<!--
//open ExternalWindow 
function openPopupWindow(varURL){
	var placeLeft = ((screen.availWidth) / 2) - 250
	var placeTop = ((screen.availHeight) / 2) - 200
	window.open(varURL,'','height=500,width=450,screenX='+placeLeft+',left='+placeLeft+',screenY='+placeTop+',top='+placeTop+',resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,titlebar=no,toolbar=no')
}

// favicon code
document.writeln ("<link rel='shortcut icon' href='img/favicon.ico'>");
//-->