function MM_openBrWindow(theURL,winName,features) { 
	window.open(theURL,winName,features);
}

function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}

function PrintCurrentPage(objCSS, objDIV) {
	var width	= 800;
	var height	= 650;
	var pp = window.open("", "_print_page", "scrollbars=yes,width=" + width + ",height=" + height + ",top=" + (screen.height/2 - height/2) + ",left=" + (screen.width/2 - width/2));
	pp.document.writeln("<html><head>");
	pp.document.writeln("<link rel='stylesheet' type='text/css' href='" + objCSS + "'>");
	pp.document.writeln("<style type='text/css'> .noprint { display:none; } </style>");
	pp.document.writeln("</head><body>");
	pp.document.writeln(document.getElementById(objDIV).innerHTML);
	pp.document.writeln("</body></html>");
	pp.document.close();
	pp.print();
	pp.close();
}