// lauch function by Aurora Interactive Ltd.
// ©2000 Aurora Interactive Ltd - www.aurorai.net

function printpage(page)
{
	//file = page + ".html";
	var width = 1;
	var height = 1;
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	window.open(page,"printwin","Width="+width+",height="+height+",top="+top+",left="+left+", RESIZABLE=0,TOOLBAR=0,DIRECTORIES=0,STATUS=0,MENUBAR=0,SCROLLBARS=0,COPYHISTORY=0");
	window.focus();
}

