function openWindow(url, top, left, height, width)
{
	var newWin;
	
	newWin = window.open(url, "", "location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no, height=" + height + ", width=" + width + ", top=" + top + ", left=" + left)
}

function printPage()
{
	if (window.print)
		window.print();
}

