﻿<!-- Hide

// Rountine to print the page
function onPagePrint()
	{
	window.print();
	}

// Rountine to print the page
function OnWindowOpen(ThePageName, TheWidth, TheHeight)
	{
	var TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,statusbar=no,resizable=no,title=no,titlebar=no,width=" + TheWidth + ",height=" + TheHeight;
	TheWindowParams += ",left=" + ((screen.availWidth - TheWidth) / 2) + ",top=" + ((screen.availHeight - TheHeight) / 2);
	window.open(ThePageName, "ModalPopup", TheWindowParams);
	}

// Rountine to print the page
function OnWindowClose()
	{
	window.close();
	}

function OnImageSwap(TheImageName, TheImageFile)
	{
	var TheImage;
	TheImage = document.getElementById(TheImageName);
	TheImage.src = TheImageFile;
	}

// Rountine to delete the record
function onDeleteConfirm()
	{
	return(confirm("Are you sure"));
	}

// End hide -->