	function launchPrintWin(objectID)
	{
		var w = 600;
		var h = 425;
		
		var xPos = (screen.height-h)/2;
		var yPos = (screen.width-w)/2;
		remote = window.open("/wcmc/printPage.asp?objectID=" + objectID, "printWin", "width=" + w + ",height=" + h + ",toolbar=1,scrollbars=1,resizable=1,left="+yPos+",top="+xPos);
		remote.focus();
	}
	function validateEmail(theAddress)
	{
		var returnValue = true;
		var AtSym       = theAddress.indexOf('@');
		var Period      = theAddress.lastIndexOf('.');
		var Space       = theAddress.indexOf(' ');
		var Length      = theAddress.length - 1;  // Array is from 0 to length-1
	
		// '@' cannot be in first position, Must be at least one valid char btwn '@' and '.'
		// Must be at least one valid char after '.', No empty spaces permitted
		if((AtSym < 1) || (Period <= AtSym+1) || (Period == Length ) || (Space  != -1))
			returnValue = false;
	
		return returnValue;
	}
	
