function winLaunch(url,width,height) {
		var wideWidth=width+40;
		var highHeight=height+70;
		var infozWin=window.open(url,'infozPopUp',"width="+wideWidth+",height="+highHeight+",scrollbars=no,resizable=no,toolbars=no,menubar=no");
		
		if (parseInt(navigator.appVersion)>3) {
			if (navigator.appName=="Netscape") {
			infozWin.resizeTo(wideWidth,highHeight);
		}else{
			infozWin.resizeTo(wideWidth,highHeight);
		}
	}

	infozWin.focus();
	return false;
}