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 windowOpen(url,target){
	str = url;
	str2=target;
	window.open(str,str2);
}

function openContactWin(wUrl){
	var wObj;
	wWidth = 560;
	wHeight = 580;
	if(navigator.appVersion.indexOf("Mac") > -1){
		if(Fox){
			wHeight = 583;
		}else if(Safari){
			wHeight = 581;
		}
	}
	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();
}


