<!--

  var screenWidth = 800;		// default screen width
  var newWindowWidth = 684;
  var newWindowHeight = 525;
  var isIE = 0;
  var isNav = 0;

  if (document.layers)
	isNav = 1;

  if (document.all)
	isIE = 1;

function getScreenDimensions(){

    if (isIE)
	screenWidth = document.body.clientWidth;
    else if (isNav)
	screenWidth = window.innerWidth;
    
    if (screenWidth <= 640 ) {
   	newWindowWidth = 547;
   	newWindowHeight = 420;
    } else if (screenWidth <= 1024 ) {
   	newWindowWidth = 684;		// ideal/default dimensions
   	newWindowHeight = 525;
    } 
}
	
//*******************/
function openFlashWin( pageToLoad ) {

    getScreenDimensions();

//alert("w/h=" + newWindowWidth + "/" + newWindowHeight);
    var extern_window = window.open(pageToLoad, "flashWin", "width=" + newWindowWidth + ",height=" + newWindowHeight + ",location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=1,toolbar=0,hotkeys=0,left=7,top=15,screenx=7,screeny=15");
}

// -->
