
/* === FLASH VERSION REQUIREMENTS: === */

    var requiredVersion = 7;   // Version the user needs to view site (max 9, min 2)
    var jsVersion = 1.0;       // Do not change or delete.


/* === POPUPS === */

function popup(cPopUrl, cPopName, iPopWidth, iPopHeight, bScrollBars, resizable) {
	var iPopLeft, iPopTop;
	var oPopWindow = null;
	if (!oPopWindow || oPopWindow.closed){
		//Center popup window inside parent window.
		iPopLeft = (window.screen.width/2) - ((iPopWidth/2) + 10);
		iPopTop = (window.screen.height/2) - ((iPopHeight/2) + 50);
		//Open popup window
		oPopWindow=open(cPopUrl, cPopName,"height="+ iPopHeight +",width="+ iPopWidth +",left=" + iPopLeft + ",top=" + iPopTop + ",screenX=" + iPopLeft + ",screenY=" + iPopTop + ",scrollbars=" + bScrollBars + ",resizable=" + resizable + ", status=yes");
		oPopWindow.location.href = cPopUrl;
		oPopWindow.focus()
    } else {
    	oPopWindow.focus()
	}
}

	
	function PopupPic(sPicURL) { 
		window.open("popup.html?"+sPicURL, "AdHistory", "resizable=1,HEIGHT=200,WIDTH=200");
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}