if(window.name == "printWindow"){
	document.write('<link rel="stylesheet" href="/styles/print.css" type="text/css" media="all" />');

	window.onload=function() {
	window.print();
	}
}

function openpWin(){
	window.open(window.location.href,"printWindow",'scrollbars=yes,resizable=yes,menubar=yes,width=650,height=600');
}

