/*JavaScript created for Xhibit.netBy Jamie Peloquin <jamie@imagewks.com>*/// Open larger version of "LabVentures" imagefunction imageWin(){	var screenW = screen.availWidth	var screenH = screen.availHeight		var screenX = ((screenW / 2) - 160) // Divide screen-width by 2 and subtract half the width of the window	var screenY = ((screenH / 2) - 250) // Divide screen-height by 2 and subtract half the height of the window	var newWin = window.open('labventure_image.htm', 'XHIBITNET', 'resizeable=no, width=320, height=500, top='+screenY+', left='+screenX+', toolbar=no, location=no, menubar=no, scrollbars=no, statusbar=no, personalbar=no')	newWin.focus()}// Check required Contact Us fieldsfunction checkContact(){	if(document.ContactusForm.firstName.value == "")	{		alert("Please fill in your First name");		document.ContactusForm.firstName.focus();		return false;	}	if(document.ContactusForm.lastName.value == "")	{		alert("Please fill in your Last name");		document.ContactusForm.lastName.focus();		return false;	}	if(document.ContactusForm.email.value == "")	{		alert("Please fill in your Email address");		document.ContactusForm.email.focus();		return false;	}}
