function popUpWindow(URLStr, left, top, width, height, scroll, resize, winID)
{
	var winVar = this[winID];
	if(winVar) {
		if(!winVar.closed) winVar.close();
	}
	winVar = open(URLStr, winID, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + (scroll ? "yes" : "no") + ',resizable=' + (resize ? "yes" : "no") + ',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	winVar.moveTo(left, top);
	winVar.focus();

}

function launchSite()
{
	var width =  screen.availWidth;
	var height =  screen.availHeight;
	var left = 0;
	var top = 0;
	// DETERMINE WINDOW SIZE TO POP IF LARGER THAN 640, OTHERWISE DEFAULT TO HTML SITE
	if(width > 640){
		if(width >= 1024){ theURL = "maing.htm"; }
		else { theURL = "mainm.htm";	}
	}
	popUpWindow(theURL, left, top, width-10, height-29, false, true, "siteWin");
}
