function init(){
	//alert(document.getElementById("menu_bottom").offsetLeft);
	document.getElementById("menu_bottom").style.left=parseInt(document.getElementById("content_footer").offsetLeft)+11+"px";
	document.getElementById("menu_bottom").style.top=parseInt(document.getElementById("content_footer").offsetTop)+12+"px";
	//document.getElementById("flash_ticker").style.left=parseInt(document.getElementById("banner").offsetLeft)+600+"px";
	//document.getElementById("flash_ticker").style.top=parseInt(document.getElementById("banner").offsetTop)+14+"px";
}
//window.onresize=init;

function imageSwap(whatImage,whatExtension){
	document.images[whatImage].src="images/"+whatImage+whatExtension+".gif";
}

function lcheckForm(){
	if (document.forms[0].email.value.indexOf('@')==-1  || document.forms[0].email.value.indexOf('.')==-1  || document.forms[0].email.value.length <= 7 ){
		alert("You forgot your e-mail.");
		document.forms[0].elements[0].select();
		document.forms[0].elements[0].focus();
		return false;
	}
	if (document.forms[0].realname.value.length < 2){
		alert("You forgot your name.");
		document.forms[0].elements[1].select();
		document.forms[0].elements[1].focus();
		return false;
	}
	if (!document.forms[0].elements[2].checked  && !document.forms[0].elements[3].checked  && !document.forms[0].elements[4].checked ){
		alert("Please select your rating.");
		return false;
	}
	return true;
}

function checkForm(){
	okToSend="yep";
	//alert(document.formo+"\n"+document.formo.email);
	if(document.forms[0].elements[0].value==""){
		alert("You forgot your name");
		document.forms[0].elements[0].select();
		document.forms[0].elements[0].focus();
		okToSend="nope";
		return;
	}
	if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.forms[0].elements[1].value)){
		alert("You forgot your e-mail");
		document.forms[0].elements[1].select();
		document.forms[0].elements[1].focus();
		okToSend="nope";
		return;
	}
	if(document.forms[0].elements[2].value==""){
		alert("You forgot a subject");
		document.forms[0].elements[2].select();
		document.forms[0].elements[2].focus();
		okToSend="nope";
		return;
	}
	if(document.forms[0].elements[3].value==""){
		alert("You forgot a message");
		document.forms[0].elements[3].select();
		document.forms[0].elements[3].focus();
		okToSend="nope";
		return;
	}
	if(okToSend=="yep"){
		document.formo.submit();
		return true;
	}
}
