function fncSubWinOpen(StrHTMLName,WinWidth,WinHeight) {

	var an = navigator.appName;
	var av = navigator.appVersion;
	
	if (an.indexOf("Microsoft",0)!=-1 && av.indexOf("4",0) !=-1) {
		newwin1 = window.open(StrHTMLName,"149","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + WinWidth + ",height=" + WinHeight);
		} else {
		if(an.indexOf("Netscape",0) != -1 && av.indexOf("4",0) != -1) {
		  newwin1 = window.open(StrHTMLName,"149","toolbar=no,location=no,directories=no,status,menubar=no,scrollbars=no,resizable=no,width=" + WinWidth + ",height=" + WinHeight);
		} else {
		  newwin1 = window.open(StrHTMLName,"149_n6","toolbar=no,location=no,directories=no,status,menubar=no,scrollbars=no,resizable=no,width=" + WinWidth + ",height=" + WinHeight);
		}
	}

	newwin1.window.focus();
	wx = WinWidth;
	wy = WinHeight;
	x = (screen.width - wx ) / 2;
	y = (screen.height -wy ) / 2;
	newwin1.window.moveTo(x,y);
}
