if(self.opener){ 
	window.onload=opener.appSty; 
} 
function winPrint(){ 
	newWin=window.open(''+self.location,'mywin','left=20,top=20,width=660,height=350,toolbar=1,scrollbars=yes, resizable=yes,dependent=yes, menubar=yes'); 
} 
function appSty(){ 
	var win_style=newWin.document.createElement('link'); 
	win_style.href="../css/print.css"; 
	win_style.rel="stylesheet"; 
	win_style.type="text/css"; 
	newWin.document.getElementsByTagName('head')[0].appendChild(win_style); 
	newWin.focus(); 
} 