<!--
	function openWin(url, width, height, left, top)
	{
		pop = window.open(url, "openWin", 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no'); //CHANGE NO VALUES TO YES IF NEEDED
		// this.close(); // REMOVE FIRST COMMENT TAG TO CLOSE THE INITIAL WINDOW
		pop.focus();
	}

//Begin Form Validation
//validate required fields
function requiredCheck(field, strLabel){
strField=field.value
if (strField == "" || strField == null){
alert("Please provide the "+strLabel+".");
field.focus();
return false;
}
return true;
}
//end validate required fields


//end Form Validation



// -->
