function printerFriendly(stockitemnum, w, h) {
	var popup_url="http://www.daisymaze.com/print.aspx?number=" + stockitemnum;
	w = w * 2 + 30;
	h += 125;
	var x = window.open(popup_url,"help","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,resizable=1,width="+w+",height="+h+",left=2,top=2");
	x.location=popup_url;
	if (!((navigator.appName=="Microsoft Internet Explorer") && (navigator.appVersion.substring(0,3)=="4.0"))) x.focus();
}