	function popWin(url) {
		var theURL=url;
		newWin = window.open(theURL,'win','toolbar=No,menubar=No,left=200,top=200,width=350,resizable=yes,scrollbars=yes,status=No,location=No,height=400');
	}
	if(document.all && !document.getElementById) {
	    document.getElementById = function(id) {
	         return document.all[id];
    	}
	}
