
function openPrintWindow(url) {
	var width = 600;
	var height = 400;
	
	url += "&template=print.html";
	
	var myWin = window.open(url,"PrintPopUp","scrollbars=yes,toolbar=yes,statusbar=yes,width=" + width + ",height=" + height );
	myWin.focus();
}

function contentPrint() {
	if(document.layers) {
		self.print()
		//self.close()
	} else if(document.all) {
		window.print()
		//self.close()
	}
}

function openWindow(url,winName,features) {
	window.open(url,winName,features);
}