function LaunchWin(Url,ContextWSize,ContextHSize)
{
	var ContextWOffset = (screen.width)/2  - ContextWSize/2;
	var ContextHOffset = (screen.height)/2  - ContextHSize/2;

	pcBox = window.open(Url,"pcBox","width=" + ContextWSize +",height="+ ContextHSize +",toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=1,copyhistory=0")
	pcBox.moveTo(ContextWOffset,ContextHOffset);
	pcBox.window.focus()
}

function PrintThisPage()
{
	window.print();
}

