// JavaScript Document

function Resize(ID,number) {
document.getElementById(ID).width=number;
}

onload = function() {
	Resize('main',document.body.clientWidth);
}

onresize = function() {
	Resize('main',document.body.clientWidth);
}


