// JavaScript Document
var newwindow;
function PrintableWindow(url)
{
	newwindow=window.open(url,'name','height=480,width=640,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}