// JavaScript Document
function outoWidth(){
	var ScrWidth=document.body.offsetWidth;
	if(ScrWidth<=1024){
		document.body.style.width=1003+"px";
	}
	else if(ScrWidth>1024){
		document.getElementById("about").style.width=ScrWidth-680+"px"
		document.getElementById("aboutBox").style.width=ScrWidth-680+"px"
	}
}
window.onload=outoWidth;
//window.onresize=outoWidth;
function clearInput(obj){
	obj.value="";
}