function CreateWindow(fileName,windowName,theWidth,theHeight) {
	windowName = new String(Math.round(Math.random() * 100000));
	msgWindow=window.open(fileName,windowName,"toolbar=yes,width="+theWidth+",height="+theHeight+",directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no")
}
function deleteRecord(sType, nID, sReturnURLDelete) {
	if (window.confirm("Are you sure you want to delete this Record?") == true) {
		window.location = "DeleteRecord.asp?Type=" + sType +  "&ID=" + nID + "&ReturnURLDelete=" + sReturnURLDelete;
	}
}