// JavaScript Document
//start pop up window	
var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=650,width=670');
	if (window.focus) {newwindow.focus()}
}
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//end pop up window


<!-- expand window to full screen -->
if (self != top)
{
  top.location = self.location;
}
function expandWindow()
{
  var browserVer = parseInt(navigator.appVersion);
  var screen_width = window.screen.availWidth;
  var screen_height = window.screen.availHeight;

  if (browserVer >= 4)
  {
     window.resizeTo(screen_width, screen_height);
     window.moveTo(0,0);
     window.status="FLP Biz Tools"
  }
  
  else
    {
	alert("This site requires a browser version of 4.0 or better");
    }
}
// end expand window -->