function popup() {
	var winWidth, winHeight;
	winWidth = 1200; 
	winHeight = 700; 
	FawWindow = window.open("./web2/FAW.html", "", "width=" + winWidth + ", height=" + winHeight + ", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes");
	if (!FawWindow.opener) FawWindow.opener = self;	
}

function popupFlash() {
    var winWidth, winHeight;
	winWidth = 1100; 
	winHeight = 620; 
	FawWindow = window.open("./ieflash/FAW.html", "", "width=" + winWidth + ", height=" + winHeight + ", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes");
	if (!FawWindow.opener) FawWindow.opener = self;	
}

function getSplash() {
    var strSplash;
    var numSplashes = 15;
    var iSplash = Math.floor(Math.random()*(numSplashes + 1));
    
    if (iSplash == 0) {
        iSplash = 1;
    }
    
    if (iSplash > 9) {
       strSplash = '<img class="imgMain" src="./splashes/splash' + iSplash + '.jpg" width="383" height="563" border="0">';
    }
    else {
       strSplash = '<img class="imgMain" src="./splashes/splash0' + iSplash + '.jpg" width="383" height="563" border="0">';
    } 
    
    return strSplash;
}

