function popupWin(w,h,n,p){
	var winWide = w;
	var winHeight = Number(h);
	var agent = navigator.userAgent;
	if (agent.indexOf('Windows') >= 0){ winHeight += 40; }
	if (agent.indexOf('MSIE 7.0') >= 0){ winHeight += 0; }
	if (agent.indexOf('Safari') >= 0){ winHeight += 3; }
	if (agent.indexOf('Opera') >= 0){ winHeight += 1; }
//	if (agent.indexOf('Windows') >= 0 && agent.indexOf('Firefox') >= 0){winHeight -= 10; }
	//alert(agent+"\n"+winWide+"x"+winHeight)
	winOption = "width=" + winWide + ",height=" + winHeight + ",toolbar=no,directories=no,menubar=no,location=no,status=no,scrollbars=yes,resizable=yes";
	popupWindow = window.open(p,n,winOption);
	popupWindow.resizeTo(winWide,winHeight);
	popupWindow.focus();
}
