function attach() {
	if (screen.availWidth < 1024){
		document.body.className = "lo";
		document.getElementById("content_bg").style.height = "65%";
	}
	//window.moveTo(0,0);
	document.getElementById("companySelect").onchange = gotoPage;
	document.getElementById("productSelect").onchange = gotoPage;
}
function gotoPage() {
	if (this.value != "") document.location = this.value;
}
function openWindow(url) {
		window.open(url);
}
window.onload = attach;

function stopErrors() {
 return true;
}
window.onerror = stopErrors;
