function CreateWindow(url, windowName, theWidth, theHeight)
{
	newwindow = window.open(url, windowName,'width=' + theWidth + ', height=' + theHeight + ', resizable = 1, scrollbars=1, top=100, left=250');
	if (window.focus) {newwindow.focus()}
}
function deleteRecord(sType, nID, sReturnURLDelete) {
	if (window.confirm("Are you sure you want to delete this record?") == true) {
		window.location = "/AdminPortal/DeleteRecord.asp?Type=" + sType +  "&ID=" + nID + "&ReturnURLDelete=" + escape(sReturnURLDelete);
	}
}

