/* global values */
self.name="MainWindow";


function OpenWindow(Url, wName) {
		if (Url == null || Url == "") return false;
			var wWidth = 840;
			var wHeight = 630;
			var features="width=" + wWidth + ", height=" + wHeight + ", location=no, menubar=no, status=yes, scrollbars=yes, resizable=no, toolbar=no";
			var docWin = window.open(Url, wName, features);
			docWin.focus();
		}

function windowOpen(){
window.open('corporate/3click.html','subWindow','scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes,width=850,height=800')
}
function getUserAgent() {
uAgent = "";
uAgent = navigator.userAgent;
if((uAgent.indexOf("Safari") != -1)||(uAgent.indexOf("Opera") != -1)){
uAgent = 1;
}
return uAgent;
}

function openWin(url, w, h)
{
var winprop = "width=" + w + ",height=" + h;
openwin = window.open(url,'',winprop);
}
