//Print article
var gobjPrintWin;
function openPrintWindow(sUrl,w,h){
	w=600; h=500;
	gobjPrintWin=window.open(sUrl,'Print','width='+w+',height='+h+',top=20,left=20,toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1');
	gobjPrintWin.focus();
}
