function launchpop(cURL){
	nheight = 330;
	nwidth  = 250;
///	var cy = (screen.Height - nheight)/2;
//	var cx = (screen.Width - nwidth)/2;
	var cy = 1, cx=1;
	var cFeature = "left="+cx+",top="+cy+",height=" + nheight + ",width=" + nwidth + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no"
	newwin = open(cURL,"newwin", cFeature);
	if(navigator.appVersion.indexOf("MSIE 5")>0){
		newwin.top;
		newwin.focus();
	}
}
