function fPrintPage(theWidth,theNavid,theItemid,theRawurl,theParams) {
	var theUrl = '/print.php?navid='+theNavid+'&url='+theRawurl;
	if (theItemid)			theUrl += '&itemid='+theItemid;
	if (theParams)			theUrl += theParams;
	printWin = window.open(theUrl,'fPrintWin','status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+theWidth+',height=600');
	printWin.focus();
}
