var newWd
	function fClickPopup(strURL,strDesc,strMode)
	{				
		if (strMode == "http"){
			strURL = "http://"+escape(strURL)
		}
		if (strMode == "https"){
			strURL = "https://"+escape(strURL)
		}
		strDesc = escape(strDesc)			
			
	    if (!newWd || newWd.closed)
	    {
	        newWd = window.open("clicks.asp?url="+strURL+"&description="+strDesc, "newPopWindows");
	        newWd.focus();		        
	    }
	    else
	    {
			newWd.close();
	        newWd = window.open("clicks.asp?url="+strURL+"&description="+strDesc, "newPopWindows");		       
	        newWd.focus();				               
	    }
	}		