// JavaScript Pop up //

<!--	
var win;
	 function showPOP(theLink,test) {
		if (win == null || win.closed){
			win = window.open(theLink, "win", test)
		}else{ 
			if (navigator.appName.substring(0.8) == "Netscape"){
		 		win.location.href = theLink;
		 		this.win.focus();
			}else{
				win = window.open(theLink, "win", test)
			}
		}
	}
//-->

