function chkcontactus()
{
	str="Please Give : \n\n";
	flag=0;
	if(document.frm_contact.yname.value=="")
	{
		str+="Your Name\n";
		flag=1;
	}
	if(document.frm_contact.yemail.value=="")
	{
		str+="Your Email\n";
		flag=1;
	}
	if(document.frm_contact.subject.value=="")
	{
		str+="Subject\n";
		flag=1;
	}
	if(document.frm_contact.message.value=="")
	{
		str+="E-mail Message\n";
		flag=1;
	}
	if(flag==1)
	{
		alert(str);
		return false;
	}
	return true;
}

function popitup(url)
{
	newwindow=window.open(url,'name','top=0,left=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=550,height=320');
	if (window.focus) {newwindow.focus()}
}

function MM_jumpMenu(targ,selObj,restore)
{
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if(restore) selObj.selectedIndex=0;
}