
var isDOM=document.getElementById?true:false
var isOpera=isOpera5=window.opera && isDOM
var isOpera6=isOpera && window.print
var isOpera7=isOpera && document.readyState
var isMSIE=isIE=document.all && document.all.item && !isOpera
var isStrict=document.compatMode=='CSS1Compat'
var isNN=isNC=navigator.appName=="Netscape"
var isNN4=isNC4=isNN && !isDOM
var isMozilla=isNN6=isNN && isDOM
var statusCode = ""; 
var delayedLoadLayers=new Object();
var delayedLoadLayersOnLoad=new Object();
var delayedLoadXmlHttp=new Object();
var currentTabs=new Object();

if( (document.compatMode)&& (document.compatMode == 'CSS1Compat') &&(document.documentElement)) {
  window.readScroll = document.documentElement;
} else if(document.body) {
  window.readScroll = document.body;
}
else if( document.documentElement )
{
	 window.readScroll = document.documentElement;
}


function getWindowScrollLeft()
{
	if( window.pageXOffset > 0 ) { return window.pageXOffset; }
	else { return window.readScroll.scrollLeft || 0; }
}

function getWindowScrollTop()
{
	if( window.pageYOffset > 0 ) { return window.pageYOffset; }
	else { return window.readScroll.scrollTop || 0; }
}

function Point( x ,y ) { this.x=x; this.y=y; }

Pnt=Point.prototype
function getRect(elem )
{
// return absolute position of elem
// (Left, Top, Right, Bottom) in page
	var i;
	if (typeof(elem.myRect)!="undefined") return elem.myRect;
	var myRect = Array(elem.offsetLeft, elem.offsetTop,
	elem.offsetLeft + elem.offsetWidth-1,
	elem.offsetTop + elem.offsetHeight-1)
	if (!elem.offsetParent)
	{
		var xAdjust = (window.readScroll.clientLeft||0);
		var yAdjust = (window.readScroll.clientTop||0);
		for (i=0;i<4;i++) myRect[i] += (i%2)?yAdjust:xAdjust;
		return myRect;
	}
	newRect = getRect(elem.offsetParent)
	for (i=0;i<4;i++) myRect[i] = myRect[i] + newRect[i % 2];
	return myRect;
}

function HTMLLayer( name,noAlert ) {
	if( typeof(name)=='string' )
	{
		this.name=name;
		this.getObj(name,noAlert);
	}
	else
	{
		this.obj = name;
		this.style = this.obj.style?this.obj.style:this.obj;
	}
}

HTMLL=HTMLLayer.prototype

HTMLL.focus=function() { this.obj.focus(); }
HTMLL.getObj=function(name,noAlert)
{
	this.name=name;
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
  }
  else if (document.all)
  {
		this.obj = document.all[name];
  }
  else if (document.layers)
  {
		this.obj = getObjNN4(document,name);
  }
  if( this.obj==null) { if( noAlert){}else{alert(name);} }
  else
  {
		this.style = this.obj.style?this.obj.style:this.obj;
	}
  return;
}
HTMLL.getValue=function() { return this.obj.value; }
HTMLL.setValue=function( val) { return this.obj.value=val; }
HTMLL.getLeft=function() { return getRect(this.obj)[0]; }
HTMLL.getWidth=function() {
	var rect=getRect(this.obj);
  return rect[2]-rect[0];
}
HTMLL.getHeight=function() {
	var rect=getRect(this.obj);
  return rect[3]-rect[1];
}

HTMLL.getTop=function() { return getRect(this.obj)[1]; }

HTMLL.getObjNN4=function (obj,name)
{
	var x = obj.layers;
	var foundLayer;
	for (var i=0;i<x.length;i++)
	{
		if (x[i].id == name)
		 	foundLayer = x[i];
		else if (x[i].layers.length)
			var tmp = getObjNN4(x[i],name);
		if (tmp) foundLayer = tmp;
	}
	return foundLayer;
}
HTMLL.write=function(text)
{
	if (document.getElementById || document.all)
	{
		this.obj.innerHTML = '';
		this.obj.innerHTML = text;
	}
	else if (document.layers)
	{
		text2 = '<P CLASS="testclass">' + text + '</P>';
		this.obj.document.open();
		this.obj.document.write(text2);
		this.obj.document.close();
	}
}
function getMouseClickPosition( e,relTo )
{
 	var out=new Point(0,0);
  if ( !e )
  {
  	var target = new HTMLLayer(event.target || event.srcElement);
  	out.x = window.event.x + getWindowScrollLeft()+target.getLeft()- relTo.getLeft();
  	out.y = window.event.y + getWindowScrollTop()+target.getTop()- relTo.getTop();
  }
 	else if ( e.clientX || e.clientY )
	{
	  out.x = e.clientX + getWindowScrollLeft() - relTo.getLeft();
		out.y = e.clientY + getWindowScrollTop()- relTo.getTop();
  }
	else if ( e.pageX || e.pageY )
	{
    out.x = e.pageX - relTo.getLeft();
	  out.y = e.pageY - relTo.getTop();
	}

  return out;
};
function getObj(name)
{
  if (document.getElementById) {
  	this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
  } else if (document.all) {
		this.obj = document.all[name];
		this.style = document.all[name].style;
  } else if (document.layers) {
		this.obj = getObjNN4(document,name);
		this.style = this.obj;
  }
  return this.obj;
}
function findPosX(obj)
{
	var curleft = 0;
	if (obj.offsetParent) {
		while (obj.offsetParent) {
			curleft += obj.offsetLeft
			obj = obj.offsetParent;
		}
	}
	else if (obj.x) curleft += obj.x;
	return curleft;
}

function findPosY(obj)
{
	var curtop = 0;
	if (obj.offsetParent) {
		while (obj.offsetParent) {
			curtop += obj.offsetTop
			obj = obj.offsetParent;
		}
	}
	else if (obj.y) curtop += obj.y;
	return curtop;
}

var hexbase="0123456789ABCDEF";

// take a decimal integer, return 2-digit hex string
function DecToHex(number) { return hexbase.charAt((number>> 4)& 0xf)+ hexbase.charAt(number& 0xf); }

// take a hex string, return decimal integer
function HexToDec(str) { return parseInt(str.toUpperCase(), 16); }

function colorFromHexCode( col )
{
	if( col.substr(0,1)=="#") { col=col.substr(1); }
	col=col.toUpperCase();
	return new RAColor( HexToDec(col.substr(0,2)),HexToDec(col.substr(2,2)),HexToDec(col.substr(4,2)) );
}
function RAColor( red, green, blue)
{
	this.r=red;
	this.g=green;
	this.b=blue;
}

RACol=RAColor.prototype;
RACol.setFromColorString=function(str)
	{

	  if( str.substr(0,1)=="#")
	  {
	    str=str.substr(1);
	  }
		this.r=HexToDec(str.substr(0,2));
		this.g=HexToDec(str.substr(2,2));
		this.b=HexToDec(str.substr(4,2));
	}
RACol.getHex=function()
{
	return "#"+DecToHex(this.r)+DecToHex(this.g)+DecToHex(this.b);
}
RACol.getColor= function(changeTo,cur,end )
{
	r=Math.round( this.red+ ((changeTo.red-this.red)*cur/end) );
	g=Math.round( this.green+ ((changeTo.green-this.green)*cur/end) );
	b=Math.round( this.blue+ ((changeTo.blue-this.blue)*cur/end) );
	return "#"+DecToHex(r)+DecToHex(g)+DecToHex(b)
}
RACol.makeDarker=function ( amount)
{
	this.r=Math.max(0,Math.floor(this.r*(1-amount)));
	this.g=Math.max(0,Math.floor(this.g*(1-amount)));
	this.b=Math.max(0,Math.floor(this.b*(1-amount)));
}

 var colors=new Object();
 var colorsNotify=new Object();
  //colors['colorselect1']=new RAColor("#000000");
  function colorSelect(e,name,rgb) {
    var posx = 0;
	  var posy = 0;
	  if (!e) var e = window.event;
	  if (e.pageX || e.pageY) {
  		posx = e.pageX;
	  	posy = e.pageY;
	  }
	  else if (e.clientX || e.clientY) {
		  posx = e.clientX + document.body.scrollLeft;
		  posy = e.clientY + document.body.scrollTop;
	  }
	  getObj(name+rgb);
	  posx-= findPosX(this.obj);
	  if(posx<0) { posx=0; }
	  else if( posx>255) { posx=255; }
    getObj(name+rgb+"a");
    this.style.backgroundPosition=posx+"px 0px";
    (colors[name])[rgb]=posx;
    getObj(name);
    this.obj.value=colors[name].getColorString().substr(1);
    getObj(name+"col");
    this.style.backgroundColor=colors[name].getColorString();
    if( colorsNotify[name]!='' )
    {
    	eval( colorsNotify[name]+"('"+colors[name].getColorString().substr(1)+"')");
    }
  }
  RACol.getColorString=function()
	{
		return "#"+DecToHex(this.r)+DecToHex(this.g)+DecToHex(this.b);
	}
  function setColorField(name,color)
  {
    getObj(name);
    colors[name].setFromColorString(color);
    this.obj.value=colors[name].getColorString().substr(1);
    getObj(name+"col");
    this.style.backgroundColor=colors[name].getColorString();
    getObj(name+"ra");
    this.style.backgroundPosition=colors[name].r+"px 0px";
    getObj(name+"ga");
    this.style.backgroundPosition=colors[name].g+"px 0px";
    getObj(name+"ba");
    this.style.backgroundPosition=colors[name].b+"px 0px";
  }
  function updateColorField(name)
  {
  	var l=new HTMLLayer(name);
    
    colors[name].setFromColorString(this.obj.value);
    l.obj.value=colors[name].getColorString().substr(1);
    getObj(name+"col");
    this.style.backgroundColor=colors[name].getColorString();
    
    l=new HTMLLayer(name+"ra");
    l.style.backgroundPosition=colors[name].r+"px 0px";
    l=new HTMLLayer(name+"ga");
    l.style.backgroundPosition=colors[name].g+"px 0px";
    l=new HTMLLayer(name+"ba");
    l.style.backgroundPosition=colors[name].b+"px 0px";
    
  }
  function colorField( name, value,notify )
  {
  	colors[name]=colorFromHexCode(value);
  	colorsNotify[name]=notify;
    document.write("<input type='hidden' id="+name+" name="+name+" value='"+value+"'><table border=0 cellpadding=0 cellspacing=0><tr><td>");
    document.write("<div id="+name+"col align=center valign=middle style='width:80px;height:35px;border:1px solid black;background:#000000;'><div></td>");
    document.write("<td><table border=0 cellpadding=0 cellspacing=0><tr><td id="+name+"ra width=260 height=4 style='background-repeat:no-repeat;width:260;height:4;background-image:url(arrow.gif);background-position:0px 0px;'></td></tr><tr><td align=center><table border=0 cellpadding=0 cellspacing=0><tr><td id="+name+"r align=center onclick=\"colorSelect(event,'"+name+"','r');\"><img src=redcolorscale.gif width=256 height=8></td></tr></table></td></tr><tr><td id="+name+"ga width=260 height=4 style='background-repeat:no-repeat;width:260;height:4;background-image:url(arrow.gif);background-position:0px 0px;'></td></tr><tr><td align=center><table border=0 cellpadding=0 cellspacing=0><tr><td id="+name+"g align=center onclick=\"colorSelect(event,'"+name+"','g');\"><img src=greencolorscale.gif width=256 height=8></td></tr></table></td></tr><tr><td id="+name+"ba width=260 height=4 style='background-repeat:no-repeat;width:260;height:4;background-image:url(arrow.gif);background-position:0px 0px;'></td></tr><tr><td align=center><table border=0 cellpadding=0 cellspacing=0><tr><td id="+name+"b align=center onclick=\"colorSelect(event,'"+name+"','b');\"><img src=bluecolorscale.gif width=256 height=8></td></tr></table></td></tr></table></td></tr></table>");
    getObj(name);
    if( colors[name] )
    {
    	this.obj.value=colors[name].getHex().substr(1);
    	updateColorField(name);
    }
    
  }
  function GetXmlHttpObject() { 
		http_request = false;
		if (window.XMLHttpRequest) { // Mozilla, Safari,...
			http_request = new XMLHttpRequest();
			if (http_request.overrideMimeType) {
				 http_request.overrideMimeType('text/xml');
			}
		} else if (window.ActiveXObject) { // IE
			try { http_request = new ActiveXObject("Msxml2.XMLHTTP"); }
			catch (e) {
				try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); }
				catch (e) { }
			}
  }
  return http_request;
}

function addDelayedLoadLayer( id, src ) { delayedLoadLayers[id]=src; }
function setDelayedLoadLayerOnLoad(id, act) { delayedLoadLayersOnLoad[id]=act; }

function loadDelayedLoadLayer( id) {

		
	if( typeof(delayedLoadLayers[id])=='string' ) {
		var url=delayedLoadLayers[id];
		delayedLoadXmlHttp[id]=GetXmlHttpObject();
		delayedLoadXmlHttp[id].onreadystatechange=updateDelayedLayers;
		
		delayedLoadXmlHttp[id].open("GET",url,true)
		delayedLoadXmlHttp[id].send(null)
	}
	delayedLoadLayers[id]=null;	
}

function showLayer( id ) {
	if(delayedLoadLayers[id] ) { loadDelayedLoadLayer( id); }
	var l=new HTMLLayer(id);
	l.style.display="";
}

function updateDelayedLayers() {
	for( var id in delayedLoadXmlHttp ) {
		if (delayedLoadXmlHttp[id]   &&(delayedLoadXmlHttp[id].readyState==4 || delayedLoadXmlHttp[id].readyState=="complete")) { 

			var l=new HTMLLayer(id );
			l.write(delayedLoadXmlHttp[id].responseText);
			delayedLoadXmlHttp[id]=false;
			if( delayedLoadLayersOnLoad[id] ) {
				eval(delayedLoadLayersOnLoad[id]);
				delayedLoadLayersOnLoad[id]='';
			}
		}
	}
}

function showTab(name,num) {
	if( typeof( currentTabs[name] ) == 'undefined' )
	{
		currentTabs[name] = tabGetFirstEnabled( name );
	}
	if( typeof( currentTabs[name] ) != 'undefined' )
	{
		var buttonOld=new HTMLLayer('__'+name+"tabbutton_"+currentTabs[name]);
		var frameOld=new HTMLLayer('__'+name+"tab_"+currentTabs[name]);
		buttonOld.obj.className="tabbutton";
		frameOld.style.display="none";	
	}
	var buttonNew=new HTMLLayer('__'+name+"tabbutton_"+num);
	var frameNew=new HTMLLayer('__'+name+"tab_"+num);
	currentTabs[name]=num;
	buttonNew.obj.className="tabbuttonselected";
	frameNew.style.display="block";
	showLayer('__'+name+"tab_"+num);
}

function tabGetFirstEnabled( name )
{
	var st = '__'+name+'tabbutton_';
	var stlen = st.length;
	if( document.getElementsByTagName )
	{
		var node_list = document.getElementsByTagName('a');
		for (var i = 0; i < node_list.length; i++)
		{
	    var ele = node_list[i];
	    if( ele.id && ele.id.substr( 0,stlen) == st)
	    {
	    	if( !( (ele.style && ele.style.display == 'none' ) || ele.display == 'none' ) )
				{
					return ele.id.substr( stlen );
				}
	    }
	  }
	}
	else
	{
		for( var i in document.all )
		{
			if( i.substr( 0,stlen) == st )
			{
				var ele = document.all[i];
				if( !( (ele.style && ele.style.display == 'none' ) || ele.display == 'none' ) )
				{
					return i.substr( stlen );
				}
			}
		}
	}
}
function tabDisable( name, num ) {
	
	if( typeof( currentTabs[name] ) == 'undefined' )
	{
		currentTabs[name]= tabGetFirstEnabled( name );
	}
	var button=new HTMLLayer('__'+name+"tabbutton_"+num);
	button.style.display="none";	
	
	if(currentTabs[name]==num )
	{
		showTab(name,tabGetFirstEnabled( name ));
	}
}

function tabEnable( name, num ) {
	var button=new HTMLLayer('__'+name+"tabbutton_"+num);
	button.style.display="";
}

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_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=1; i<(args.length-1); i+=3) { test=args[i+2]; val=args[0][args[i]];
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@'); 
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
  } if (errors) alert('The following error(s) occurred:\n'+errors);
  document.MM_returnValue = (errors == '');
}

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 openWin(urlName,w,h,winName){
	if (!winName) winName = "fepopup";
	if (!w) w = 640;
	if (!h) h = 480;
	window.open(urlName,winName,"toolbar=no,location=no,status=no,directories=no,menubar=no,scrollbars=yes,width="+w+",height="+h+",resizable=yes");
}
// from index
function checkSearch() { if(document.fsearch.stext.value=='') { alert('Please enter some text for search.'); return false; } else return true; }
function newslettersubmit(formname) { if (formname.email.value=="") { alert("Please, fill the field 'Email' on the form above"); } else { formname.mail.value=formname.email.value; formname.action="unsubscribe.php"; formname.submit(); } }

// from catalog listing

function onButOver(id,path) { document.getElementById(id).src=path; }
function URLEncode( c )
{
	return encodeURIComponent(c);
}
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;
