// ----------------------------- Fly Open Window ------------------------------------------
winName = "";


// openMe creates a window with a set name, locaton, width, height, top & left postions
function openMe(winName,urlPath,width,height,top,left) {
	winName = winName;
	BrowserName = navigator.appName;
	BrowserVersion = parseFloat(navigator.appVersion);
	
	// the adjusts the window for Netscape's lack of a phantom scroll bar
	
	//if (BrowserName == "Netscape"){
	//width -= 5;
	//}
	
	eval(winName + '= eval(\'window.open(urlPath,"\' + winName + \'","resizable=no,scrollbars=no,width=\' + width + \',height=\' + height + \',top=' + top + ',left=' + left + '")\')')
	//flyout = window.open(urlPath,"flyout","resizable=yes,scrollbars=yes,width=645,height=410,top=5,left=225");
	eval('window.' + winName + '.focus()');
	eval(winName + ".opener.name = \"splashPage\"");
	// eval('window.' + winName + '.onblur = window.'  + winName +  '.close');
	
}

/*
function focusOnWin(winFoci){
	eval('window.' + winFoci + '.focus()');
}
*/