// JavaScript Document

function menu(id,wdt){
	if(document.all){
		if(document.body.clientWidth>1062){ 
			x=(document.body.clientWidth/2)-wdt;
		}
		else{
			x=536-wdt;
		}
	}
	else{
		if(window.innerWidth>1062){
			x=(window.innerWidth/2)-wdt;
		}
		else{
			x=536-wdt;
		}
	}
	document.getElementById(id).style.left=x+"px";
	document.getElementById(id).style.display="";
}

function checkForm(){
	document.getElementById('sec').value='2';
	return true;
}
