function adapt_to_resolution () {
	if (screen.width<1024) {
		document.getElementById('totalwrapper').className = "fullscreen";	
		document.getElementById('footer').className = "fullscreen";
	} else {
		document.getElementById('totalwrapper').className = "normalscreen";	
		document.getElementById('footer').className = "normalscreen";	
	}

	if (document.forms.project!=null)
	{
		document.forms.project.cp_name.focus();
	}

	if (screen.width<800) {
		window.location='mobile/index.php';
	}

}	



