<!--

// POPUP WINDOW (PRINT)

function popUp(URL,NAME) {
	win=window.open(URL + "?ref="+window.location.pathname + "&title=" + this.document.title,NAME,'scrollbars=yes,resizable=yes,width=490,height=600,screenX=10,screenY=10,top=10,left=10');
	win.focus();
}

// POPUP WINDOW (MAP)

function popUpMap(URL,city,itemAlias) {
	win=window.open(URL + "?item=" + itemAlias + "&city=" + city,'map','scrollbars=no,resizable=yes,width=340,height=470,screenX=1,screenY=1,top=1,left=1');
	win.focus();
}
// SHOW PRINTABLE

function showPrintable(){
							document.open();
							document.write("<div align=\"right\"><a href=\"javascript:popUp('/zzprint/printarticle.php', 'Print');\" class=\"factlink\"><img src=\"/img/print.gif\" border=0>&nbsp;Printable version</a></div>");
							document.close();
}
//-->