
	function popmeup(url)
	{
		var t = 20; 
		var l = document.body.clientWidth/2 - 270;
		var w = 605;
		var h = 550;
	
		var tmpWin = window.open(url, "tmpWin", "resizable=1, scrollbars=1,width="+ w +" +,height="+ h +",top="+t+ ",left="+l);
		tmpWin.focus();
	}

