<!--
function getXMLHttp()
{
  var xmlHttp

  try
  {
    //Firefox, Opera 8.0+, Safari
    xmlHttp = new XMLHttpRequest();
  }
  catch(e)
  {
    //Internet Explorer
    try
    {
      xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch(e)
    {
      try
      {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
      catch(e)
      {
        alert("Your browser does not support AJAX!")
        return false;
      }
    }
  }
  return xmlHttp;
}

function MakeRequest(htmlfile,extension,resultId,loaderId,currency)
{
if (htmlfile == 'init'){ // US $
  var country = extension;
  extension = 'html';
  if (country == 'GB'){
    htmlfile = 'ajaxUK';
  currency = 'pound';
  }else{
    if ((country == 'US') || (country == 'CA')){
      htmlfile = 'ajaxUS';
  currency = 'usd';
    }else{
      htmlfile = 'ajaxEU';  // default    
  currency = 'euro';
    }
  }
}
if (htmlfile == 'initpoker'){  // UK , pound
  var country = extension;
  extension = 'html';
  if (country == 'GB'){
    htmlfile = 'pokerUK';
  currency = 'pound';
  }else{
    if ((country == 'US') || (country == 'CA')){
      htmlfile = 'pokerUS';
  currency = 'usd';
    }else{
      htmlfile = 'pokerEU';  // default    
  currency = 'euro';
    }
  }
}
if (htmlfile == 'initreview'){  // UK , pound
  extension = 'html';
  htmlfile = 'review';
  currency = 'iew';
}

if (htmlfile == 'initslots'){ // EU  Euro
  var country = extension;
  extension = 'html';
  if (country == 'GB'){
    htmlfile = 'slotsUK';
  currency = 'pound';
  }else{
    if ((country == 'US') || (country == 'CA')){
      htmlfile = 'slotsUS';
  currency = 'usd';
    }else{
      htmlfile = 'slotsEU';  // default    
  currency = 'euro';
    }
  }
}
{

  var xmlHttp = getXMLHttp();
  document.getElementById(loaderId).style.visibility = 'visible';
    if (htmlfile ===''){
		if ( document.getElementById('butt_us').innerHTML.search(' Poker') != -1 ){  // if is XXPoker
			if (document.getElementById('butt_us').className === 'right_act'  )  {htmlfile = 'pokerUS'};
			if (document.getElementById('butt_uk').className === 'right_act'  )  {htmlfile = 'pokerUK'};
			if (document.getElementById('butt_eu').className === 'right_act'  )  {htmlfile = 'pokerEU'};
		}else if ( document.getElementById('butt_us').innerHTML.search(' Slots') != -1 ){  // if is XXSlots
			if (document.getElementById('butt_us').className === 'right_act'  )  {htmlfile = 'slotsUS'};
			if (document.getElementById('butt_uk').className === 'right_act'  )  {htmlfile = 'slotsUK'};
			if (document.getElementById('butt_eu').className === 'right_act'  )  {htmlfile = 'slotsEU'};
		}else{
			if (document.getElementById('butt_us').className === 'right_act'  )  {htmlfile = 'ajaxUS'};
			if (document.getElementById('butt_uk').className === 'right_act'  )  {htmlfile = 'ajaxUK'};
			if (document.getElementById('butt_eu').className === 'right_act'  )  {htmlfile = 'ajaxEU'};
		}
  }
  if (currency == ''){
	  if(document.getElementById('usd').className === 'aj_curra1'){
		currency ='usd';
	  }
	  if(document.getElementById('pound').className === 'aj_curra2'){
		currency ='pound';
	  }
	  if(document.getElementById('euro').className === 'aj_curra3'){
		currency ='euro';
	  }
  }
//  document.getElementById(resultId).innerHTML='... 00%';
  xmlHttp.onreadystatechange = function()
  {
//    if(xmlHttp.readyState == 1) document.getElementById(resultId).innerHTML = '.   25%';
//    if(xmlHttp.readyState == 2) document.getElementById(resultId).innerHTML = '..  50%';
//    if(xmlHttp.readyState == 3) document.getElementById(resultId).innerHTML = '... 75%';
    if(xmlHttp.readyState == 4)
    {
      HandleResponse(xmlHttp.responseText,resultId,loaderId,htmlfile,currency);
	  MakeRequest2('','html','ResponseD','LoaderD',currency);
    }
  }
  xmlHttp.open("GET", htmlfile+"."+extension, true);
  xmlHttp.send(null);
  }
}

function HandleResponse(response,resultId,loaderId,htmlfile,currency)
{
  if(document.getElementById('butt_uk')!=undefined) { document.getElementById('butt_uk').className = 'right'; }
	if(document.getElementById('butt_us')!=undefined) { document.getElementById('butt_us').className = 'right'; }
	if(document.getElementById('butt_eu')!=undefined) { document.getElementById('butt_eu').className = 'right'; }
	if(document.getElementById('usd')!=undefined) { document.getElementById('usd').className = 'aj_curr1'; }
	if(document.getElementById('pound')!=undefined) { document.getElementById('pound').className = 'aj_curr2'; }
	if(document.getElementById('euro')!=undefined) { document.getElementById('euro').className = 'aj_curr3'; }
  if(currency ==='usd'){
	document.getElementById('usd').className = 'aj_curra1';
  }
  if(currency ==='pound'){
	document.getElementById('pound').className = 'aj_curra2';
  }
  if(currency ==='euro'){
	document.getElementById('euro').className = 'aj_curra3';
  }
//	document.getElementById('butt_top').className = 'right';
//	document.getElementById('butt_win').className = 'right';
  if (htmlfile === 'ajaxUS'  || htmlfile === 'slotsUS'  || htmlfile === 'pokerUS' ){
	document.getElementById('butt_us').className = 'right_act';  
	document.getElementById('flag').className = 'flag1';
  }
  if (htmlfile === 'ajaxUK'  || htmlfile === 'slotsUK'  || htmlfile === 'pokerUK'){
	document.getElementById('butt_uk').className = 'right_act';
	document.getElementById('flag').className = 'flag2';
  }
  if (htmlfile === 'ajaxEU'  || htmlfile === 'slotsEU'  || htmlfile === 'pokerEU' ){
	document.getElementById('butt_eu').className = 'right_act';
	document.getElementById('flag').className = 'flag3';
  }
//  if (htmlfile === 'ajaxTOP'){	document.getElementById('butt_top').className = 'right_act';  }
//  if (htmlfile === 'ajaxWIN'){	document.getElementById('butt_win').className = 'right_act';  }
  document.getElementById(loaderId).style.visibility='hidden';
  document.getElementById(resultId).innerHTML = response;
  
}
function MakeRequest2(htmlfile,extension,resultId,loaderId,currency){
	//document.getElementById(loaderId).style.visibility = 'visible';
	if (htmlfile == 'init'){ // US $
	  var country = extension;
	  
	  if (country == 'GB'){
	  currency = 'pound';
	  }else{
	    if ((country == 'US') || (country == 'CA')){
	  currency = 'usd';
	    }else{   
	  currency = 'euro';
	    }
	  }
	}
	if(document.getElementById('usd')!=undefined) { document.getElementById('usd').className = 'aj_curr1'; }
	if(document.getElementById('pound')!=undefined) { document.getElementById('pound').className = 'aj_curr2'; }
	if(document.getElementById('euro')!=undefined) { document.getElementById('euro').className = 'aj_curr3'; }
	
	var response = document.getElementById(resultId).innerHTML;
	if(currency ==='usd'){
		document.getElementById('usd').className = 'aj_curra1';
		response = response.replace(/\u00A3/g,'$');
		response = response.replace(/\u20ac/g,'$');
	}
	if(currency ==='pound'){
		document.getElementById('pound').className = 'aj_curra2';
		response = response.replace(/\$/g,'&pound;');
		response = response.replace(/\u20ac/g,'&pound;');
	}
	if(currency ==='euro'){
		document.getElementById('euro').className = 'aj_curra3';
		response = response.replace(/\u00A3/g,'&euro;');
		response = response.replace(/\$/g,'&euro;');
	}
	//document.getElementById(loaderId).style.visibility='hidden';
	document.getElementById(resultId).innerHTML = response;
}
function iptocountry(ip) {
var two_letter_country_code;

var getit= new Array();
var getit1=ip.indexOf("\.");
var ip1 = ip.substr(0,getit1 );
var string="ip_files/"+ip1+".php";

var result=getit[1]; 
//     $numbers = preg_split( "/\./", $ip);
//     include("ip_files/".$numbers[0].".php");
//     $code=($numbers[0] * 16777216) + ($numbers[1] * 65536) + ($numbers[2] * 256) + ($numbers[3]);
//     print_r($code);
//     foreach($ranges as $key => $value){
//         if($key<=$code){
//             if($ranges[$key][0]>=$code){$two_letter_country_code=$ranges[$key][1];break;}
//             }
//     }
//     if ($two_letter_country_code==""){$two_letter_country_code="unkown";}
//     return $two_letter_country_code;
     return two_letter_country_code;
}



function Bookmark() {
title = "Online Casino Review"; 
url = "http://www.online-casino-review.com/";
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera) { // Opera Hotlist
		return true; }
 }
 
function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
	}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

var ie= ((document.all)&&(!document.layers)) ? true : false;
var ns= ((document.layers)&&(!document.getElementById)) ? true : false;
var moz= ((document.getElementById)&&(!document.all)) ? true : false;

function show(div) {
	if(ie) {document.all[div].style.display="block";}
	if(ns) {document.layers[div].display="block";}
	if(moz) {document.getElementById(div).style.display="block";}
	}

function hide(div) {
	if(ie) (document.all[div].style.display="none")
	if(ns) (document.layers[div].display="none")
	if(moz) (document.getElementById(div).style.display="none")
	}

function wopen(castp)
{
 var url='cl_count.php?castp='+ castp;
var cas='casino'+castp;
 var wind=window.open(url,'cas','height=800,width=1000,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,location=yes');
  }
function visit(castp,type){
	window.open('http://www.online-casino-review.com/'+'cl_count.php'+'?'+'castp='+castp+'&'+'type='+type);
}

function down(castp,type){
	window.open('http://www.online-casino-review.com/'+'cl_count_download.php'+'?'+'castp='+castp+'&'+'type='+type);
}
function view_show(part,num1, num2){
	var bg = document.getElementById(part+'_bg');
	bg.style.display = 'block';
	var img = document.getElementById(part);
	img.style.display = 'block';
	var img1 = document.getElementById('viewimg');
	img1.style.backgroundPosition=num1+" "+num2;
	
}

function view_hide(part){
	var bg = document.getElementById(part+'_bg');
	bg.style.display = 'none';
	var img = document.getElementById(part);
	img.style.display = 'none';
	
}

function validate_email() {
   var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   var address = document.getElementById("email").value;
   if(reg.test(address) == false) {
      alert('Invalid Email !!');
      return false;
   }else{
	  return true;
   }
}

function subscribe() {
	window.location.href='http://www.online-casino-review.com/'+'newsletter.htm';
}
    var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			   string: navigator.userAgent,
			   subString: "iPhone",
			   identity: "iPhone/iPod"
	    },
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();

// document.write(BrowserDetect.browser + ' ' + BrowserDetect.version + ' on ' + BrowserDetect.OS );
// -->


function ShowBanner(){
	document.getElementById('bar_banner').style.display = 'block';
	document.getElementById('bar_banner_btn').style.display = 'none';
}
function HideBanner(){
	document.getElementById('bar_banner').style.display = 'none';
	document.getElementById('bar_banner_btn').style.display = 'block';
}
function addStaticBar(){if(window.parent.location == window.location){
var oDiv=document.createElement("div");oDiv.id = 'bar';
oDiv.innerHTML = '<div id="bar_inner"><div id="bar_cont"><div id="bar_l"></div><div id="bar_bg"></div><div id="bar_r"></div><table width="954" border="0" cellpadding="0" cellspacing="0" id="bar_tb" name="bar_tb"><tr><td height="32"></td><td width="22"></td><td width="173" onMouseOver="ShowBanner()"><div id="bar_banner_btn"></div><div id="bar_banner" style="display:none;"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="173" height="215"><param name="movie" value="allslots.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="allslots.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="173" height="215" wmode="transparent"></embed></object></div></td><td class="bar_sep"></td><td width="202" align="center">$200 + 10% First Deposit Bonus</td><td class="bar_sep"></td><td width="207" align="center">Get over $5000 in bonuses a year</td><td class="bar_sep"></td><td width="154" align="center">$100,000 Quest Prizes</td><td width="129"><a onClick="javascript:visit(\'0\');" href="javascript:void(0)" class="bar_btn"></a></td><td width="61"><a href="javascript:void(0);" onClick="javascript: document.getElementById(\'bar\').style.display = \'none\'" class="bar_close"></a></td></tr></table></div></div>';
document.body.appendChild(oDiv);}}
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;

