var Fox = navigator.userAgent.indexOf("Firefox") != -1;
var Safari = navigator.userAgent.indexOf("Safari") != -1;
var IE = navigator.userAgent.indexOf("MSIE") != -1;
var NN = navigator.userAgent.indexOf("Netscape") != -1;

function openContactWin(wUrl){
	var wObj;
	wWidth = 705;
	wHeight = 369;
	if(navigator.appVersion.indexOf("Mac") > -1){
		if(Fox){
			wHeight = 372;
		}else if(Safari){
			wHeight = 370;
		}
	}
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	sWinName = "Mail";
	wObj = window.open(wUrl,sWinName,wOption);
	wObj.focus();
}

function openPrivacyWin(wUrl){
	var wObj;
	wWidth = 650;
	wHeight = 600;
	if(navigator.appVersion.indexOf("Mac") > -1){
		if(Fox){
			wHeight = 603;
		}else if(Safari){
			wHeight = 601;
		}
	}
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	sWinName = "Privacy";
	wObj = window.open(wUrl,sWinName,wOption);
	wObj.focus();
}
