function openwin1(url,w,h) {
	str = "";
	if (w!='') { str = str + "width=" + w + ", height=" + h + ","; }
	str = str + "toolbars=0,status=0,resizable=0,scrollbars=1";
	window.open(url,'',str);
}
function openwin2(url,w,h) {
	str = "";
	if (w!='') { str = str + "width=" + w + ", height=" + h + ","; }
	str = str + "toolbars=0,status=0,resizable=0,scrollbars=0";
	window.open(url,'',str);
}

function printFlash(url,w,h) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">');
	document.write('<param name="movie" value="'+url+'">');
	document.write('<param name="quality" value="high"><param name="wmode" value="transparent"><param name="menu" value="false">');
	document.write('<embed src="'+url+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed>');
	document.write('</object>');
}

function CheckEmail() {
	var strCat = document.form1.category.value;
	var strName = document.form1.name.value;
	var strEmail = document.form1.email.value;
	var strPhone = document.form1.phone.value;
	var strSubject = document.form1.subject.value;
	var strMessage = document.form1.message.value;
	//var strProject = document.form1.project.value;
	var strProjectID = document.form1.projectID.value;
	if ((strEmail.indexOf("@") < 1 ) || (strEmail.indexOf(".") < 1 )) 
			{
					alert("Your E-mail is not correct.");
					document.form1.email.focus()
					return false;
			}
	else
		{
			//window.open('../mail.asp?project='+ strProject+'&email='+ strEmail +'&name='+ strName +'&subject='+ strSubject +'&message='+ strMessage +'&submit=yes','','width=300,height=200, toolbar=0, scrollbars=0,status=0');
			window.open('../contact.aspx?cat='+ strCat +'&strProjectID='+ strProjectID +'&strName='+ strName +'&strEmail='+ strEmail +'&strPhone='+ strPhone +'&strSubject='+ strSubject +'&strMessage='+ strMessage +'&submit=yes','','width=300,height=200, toolbar=0, scrollbars=0,status=0');
		}
}