function OpenPrintWindow(URLString) 
{
	defaultPrintWindow = window.open(URLString, 'printWindow', 'width=750,height=' + screen.availHeight + ',top=0,left=0,location=no,menubar=no,titlebar=yes,toolBar=no,scrollbars=yes,resizable=no');
	try 
	{ 
		defaultPrintWindow.focus()
	} 
	catch(er) 
	{
	} 
}

function OpenPopUpWindow(URL)
{
	defaultPopUpWindow = window.open(URL, 'PopUpWindow', 'width=722,height=657,top=' + (screen.availHeight - 657)/2 + ',left=' + (screen.availWidth - 722)/2 + ',location=no,menubar=no,titlebar=no,toolBar=no,scrollbars=yes,resizable=no');
	try 
	{ 
		defaultPopUpWindow.focus()
	} 
	catch(er) 
	{
	} 
}