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,_b){
if(!document.getElementById){
return;
}
this.DETECT_KEY=_b?_b:"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(c){
this.addParam("bgcolor",c);
}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){
this.setAttribute("redirectUrl",_a);
}
};
deconcept.SWFObject.prototype={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.push(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");
}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_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");
}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_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{
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(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[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(_29){
var q=document.location.search||document.location.hash;
if(q){
var _2b=q.substring(1).split("&");
for(var i=0;i<_2b.length;i++){
if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
return _2b[i].substring((_2b[i].indexOf("=")+1));
}
}
}
return "";
}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){
var _2d=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2d.length;i++){
_2d[i].style.display="none";
for(var x in _2d[i]){
if(typeof _2d[i][x]=="function"){
_2d[i][x]=null;
}
}
}
};
if(typeof window.onunload=="function"){
var oldunload=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();
oldunload();
};
}else{
window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;
}
if(Array.prototype.push==null){
Array.prototype.push=function(_30){
this[this.length]=_30;
return this.length;
};
}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;

deconcept.PlayerVersion.prototype.toString=function(){
return this.major+"."+this.minor+"."+this.rev;
};
deconcept.SWFObject.prototype.write=function(_1){
if(this.getAttribute("useExpressInstall")){
var _2=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_2)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
this.addVariable("MMdetected",this.installedVer.toString());
this.addVariable("MMrequired",this.getAttribute("version").toString());
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 _1=="string")?document.getElementById(_1):_1;
n.innerHTML=this.getSWFHTML();
return true;
}else{
if(this.getAttribute("redirectUrl")!=""){
document.location.replace(this.getAttribute("redirectUrl"));
}
}
return false;
};

eval(function(p,a,c,k,e,d){
e=function(c){
return (c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36));
};
if(!"".replace(/^/,String)){
while(c--){
d[e(c)]=k[c]||e(c);
}
k=[function(e){
return d[e];
}];
e=function(){
return "\\w+";
};
c=1;
}
while(c--){
if(k[c]){
p=p.replace(new RegExp("\\b"+e(c)+"\\b","g"),k[c]);
}
}
return p;
}("3(![].13)1Z.v.13=2(){s(6 i=0;i<H.c;i++)9[9.c-1]=H[i];e 9.c};3(Q b==\"1h\")6 b={};3(!b.o)b.o={};b.o.u=2(1Y){9.f={};s(6 i=H.c;-1<--i;){9.f[H[i]]=[]}};b.o.u.v.15=2(t,l){s(6 i=9.f[t].c;-1<--i;)3(9.f[t][i]==l)e;9.f[t].13(l)};b.o.u.v.1X=2(t,l){s(6 i=9.f[t].c;-1<--i;){3(9.f[t][i]==l){9.f.1W(i,1);1V}}};b.o.u.v.r=2(t,d){s(6 i=9.f[t].c;-1<--i;)9.f[t][i](d)};b.17=(2(){2 I(){6 4=9,R=1U,E,8=12();2 12(){e Z.W.1T(1)}2 A(n){D.Z.W=n}2 1o(){6 n=12();3(8!=n){8=n;4.r(\"m\",n)}}3(S)E=S(1o,R);4.1S=2(){e 8};2 B(n){3(!1m(n)){6 a=7.O(\"a\");a.N(\"C\",n);3(/1e/.1R(P.1f)&&!D.1g)a=7.O('<a C=\"'+n+'\">'+n+\"</a>\");a.y.1d=\"1c\";a.y.1b=z()+\"1n\";a.y.1Q=1P()+\"1n\";7.k.1a(a,7.k.19)}}2 1m(n){6 a=7.1O;s(6 i=0;i<a.c;i++)3(a[i].C==n)e M;e T}3(Q 1l.1k==\"1N\"){2 z(){e 1l.1k}}w 3(7.11&&7.11.10){2 z(){e 7.11.10}}w 3(7.k){2 z(){e 7.k.10}}1M(1L(z).1K().1j(/1J/g,\"1I\").1j(/Y/g,\"X\"));4.j=2(){};3(P.1H.1G(\"1F\")!=-1){6 q=V.c,G=[],F=T;G[q]=Z.W;4.j=2(n){3(8!=n){B(n);8=n;A(n);q=V.c+1;G[q]=n;F=M;4.r(\"m\",n)}};6 1i=2(){3(!F){6 U=V.c;3(U!=q){q=U;6 n=G[q];3(8!=n){8=n;4.r(\"m\",n)}}}w F=T};1E(E);E=S(1i,R)}w 3(Q 1D!=\"1h\"&&D.1C&&!D.1g&&P.1f.1B(/1e (\\d\\.\\d)/)[1]>=5.5){6 p,x;2 16(){6 h=\"1A\";p=7.O(\"1z\");p.N(\"C\",h);p.N(\"1y\",h);p.y.1d=\"1c\";p.y.1b=\"-1x\";7.k.1a(p,7.k.19);x=1w[h];J(8,M)}2 J(n){x.7.1v(\"1u/L\");x.7.1t(\"<L><18></18><k 1s\",'1r=\"1q.b.17.K(\\''+n+'\\');\">',n+\"</k></L>\");x.7.1p()}4.K=2(){4.K=2(h){8=h;4.r(\"m\",h)}};4.j=2(n){16();4.j=2(n){3(8!=n){8=n;J(n)}};4.j(n)};4.15(\"m\",2(h){A(h)})}w{4.j=2(n){B(8);4.j=2(n){3(8!=n){B(n);8=n;A(n);4.r(\"m\",n)}};4.j(n)}}}I.v=14 b.o.u(\"m\");e 14 I()})();",62,124,"||function|if|_0||var|document|_1|this||unFocus|length||return|_2||||addHistory|body||historyChange||Utilities|_3|_4|notifyListeners|for||EventManager|prototype|else|_5|style|getScrollY|_6|_7|name|window|_8|_9|_10|arguments|Keeper|_11|_12|html|true|setAttribute|createElement|navigator|typeof|_13|setInterval|false|_14|history|hash|||location|scrollTop|documentElement|_15|push|new|addEventListener|_16|History|head|firstChild|insertBefore|top|absolute|position|MSIE|userAgent|opera|undefined|_17|replace|pageYOffset|self|_18|px|_19|close|parent|oad|onl|write|text|open|frames|900px|id|iframe|unFocusHistoryFrame|match|print|ActiveXObject|clearInterval|Safari|indexOf|appVersion|Left|Top|toString|String|eval|number|anchors|getScrollX|left|test|getCurrent|substring|200|break|splice|removeEventListener|arg|Array".split("|"),0,{}));

if(typeof thetainteractive=="undefined"){
var thetainteractive=new Object();
}
if(typeof thetainteractive.classes=="undefined"){
thetainteractive.classes=new Object();
}
if(typeof thetainteractive.utilities=="undefined"){
thetainteractive.utilities={getBrowserDimensions:function(){
var x,y;
if(self.innerHeight){
x=self.innerWidth;
y=self.innerHeight;
}else{
if(document.documentElement&&document.documentElement.clientHeight){
x=document.documentElement.clientWidth;
y=document.documentElement.clientHeight;
}else{
if(document.body){
x=document.body.clientWidth;
y=document.body.clientHeight;
}
}
}
return ([x,y]);
},getRequestParameter:function(_2){
var _3=document.location.search||document.location.hash;
if(_3){
var _4=_3.indexOf(_2+"=");
var _5=(_3.indexOf("&",_4)>-1)?_3.indexOf("&",_4):_3.length;
if(_3.length>1&&_4>-1){
return _3.substring(_3.indexOf("=",_4)+1,_5);
}
}
return "";
},getBrowserCode:function(){
if(navigator.userAgent.toLowerCase().indexOf("safari")!=-1){
return "SF";
}else{
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
return "MZ";
}else{
return "IE";
}
}
},includeScript:function(_6){
var _7=document.getElementsByTagName("head").item(0);
var _8=document.createElement("script");
_8.setAttribute("language","javascript");
_8.setAttribute("type","text/javascript");
_8.setAttribute("src",_6);
_7.appendChild(_8);
}};
}
if(typeof thetainteractive.classes.Cookie=="undefined"){
new function(){
thetainteractive.classes.Cookie=this;
this.set=function(_9,_a,_b){
var _c="";
if(_b){
var _d=new Date();
_d.setTime(_d.getTime()+(_b*24*60*60*1000));
_c="; expires="+_d.toGMTString();
}
document.cookie=_9+"="+_a+_c+"; path=/";
};
this.get=function(_e){
var _f=_e+"=";
var ca=document.cookie.split(";");
for(var i=0;i<ca.length;i++){
var c=ca[i];
while(c.charAt(0)==" "){
c=c.substring(1,c.length);
}
if(c.indexOf(_f)==0){
return c.substring(_f.length,c.length);
}
}
return "";
};
this.kill=function(_13){
this.set(_13,"",-1);
};
};
}
if(typeof thetainteractive.classes.Suckerfish=="undefined"){
new function(){
thetainteractive.classes.Suckerfish=this;
function parse(eid,tag){
var _16;
var _17=document.getElementById(eid);
if(_17!=null){
_16=_17.getElementsByTagName(tag);
for(var i=0;i<_16.length;i++){
_16[i].onmouseover=function(){
this.className+=" sfhover";
};
_16[i].onmouseout=function(){
this.className=this.className.replace(new RegExp(" sfhover\\b"),"");
};
}
}
}
function init(){
parse("navigation","li");
}
this.repair=function(eid,tag){
parse(eid,tag);
};
if(window.attachEvent){
window.attachEvent("onload",init);
}
};
}

if(typeof thetainteractive=="undefined"){
var thetainteractive=new Object();
}
if(typeof thetainteractive.classes=="undefined"){
thetainteractive.classes=new Object();
}
if(typeof thetainteractive.classes.AjaxConnection=="undefined"){
thetainteractive.classes.AjaxConnection=function(){
var _1=this;
var _2=new Object();
var _3;
function getXMLHTTPObject(){
var _4;
try{
_4=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e){
try{
_4=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc){
_4=null;
}
}
if(!_4&&typeof XMLHttpRequest!="undefined"){
_4=new XMLHttpRequest();
}
if(_4){
return _4;
}
}
function getNameValuePairs(){
var _5="";
for(var _6 in _2){
_5+="&"+escape(_6)+"="+escape(_2[_6]);
}
return _5.substring(1);
}
function parseXMLasObject(_7){
var o=new Object();
for(var i=0;i<_7.childNodes.length;++i){
var _a=_7.childNodes[i];
var _b=_a.nodeName;
var _c=_a.hasChildNodes();
var _d=_a.nodeValue;
o._name=_b;
o._value=_d;
o.attributes=_a.attributes;
o[_b]=arguments.callee(_a);
}
return o;
}
this.load=function(_e){
_3=getXMLHTTPObject();
_3.open("GET",_e,true);
_3.onreadystatechange=function(){
if(_3.readyState==4){
_1.onLoad();
}
};
_3.send(null);
};
this.sendAndLoad=function(_f,_10){
var _11=getNameValuePairs();
if(_10==undefined){
_10="POST";
}
if(_10=="GET"){
_f+="?"+_11;
_11=null;
}
_3=getXMLHTTPObject();
_3.open(_10,_f,true);
_3.onreadystatechange=function(){
if(_3.readyState==4){
_1.onLoad();
}
};
_3.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
_3.send(_11);
};
this.setVariable=function(_12,_13){
_2[_12]=_13;
};
this.getText=function(){
return _3.responseText;
};
this.getXML=function(){
return _3.responseXML;
};
this.getObjectXML=function(){
return parseXMLasObject(this.getXML().firstChild);
};
this.onLoad=function(){
};
};
}

if(typeof thetainteractive=="undefined"){
var thetainteractive=new Object();
}
if(typeof thetainteractive.utilities=="undefined"){
thetainteractive.utilities=new Object();
}
if(typeof thetainteractive.utilities.History=="undefined"){
new function(){
thetainteractive.utilities.History=this;
var _1;
function getSWFObject(){
if(navigator.appName.indexOf("Microsoft")!=-1){
return window[_1];
}else{
return document[_1];
}
}
function setBrowserState(_2){
if(_2==""||_2=="null"||_2==null||_2==undefined){
return;
}
getSWFObject().thetainteractive_utilities_History_setHistory(_2);
}
this.SWFID=function(id){
_1=id;
};
this.listener=function(_4){
setBrowserState(_4);
};
this.setHistory=function(_5){
if(_5==""||_5=="null"||_5==null||_5==undefined){
return;
}
unFocus.History.addHistory(_5);
};
this.getHistory=function(){
return unFocus.History.getCurrent();
};
unFocus.History.addEventListener("historyChange",this.listener);
};
}
var History=thetainteractive.utilities.History;

if(typeof redrocketcms=="undefined"){
var redrocketcms=new Object();
}
if(typeof redrocketcms.classes=="undefined"){
redrocketcms.classes=new Object();
}
if(typeof redrocketcms.utilities=="undefined"){
redrocketcms.utilities={bypassFlash:function(){
var _1=thetainteractive.classes.Cookie;
var _2=thetainteractive.utilities.getRequestParameter("flash");
if(_2!=""){
_1.set("flash",_2);
return _2=="false";
}
_2=_1.get("flash");
if(_2!=""){
return _2=="false";
}
return false;
}};
}
if(typeof redrocketcms.classes.FlashSite=="undefined"){
new function(){
redrocketcms.classes.FlashSite=this;
var _3="container";
var _4="assets/movies/loader.swf";
var _5="loader";
var _6=null;
var _7=true;
var _8;
var _9="None";
var _a=0;
var _b=0;
var _c=0;
var _d=0;
var _e=redrocketcms.utilities.bypassFlash()==false;
var _f="";
var _10="";
var _11="";
var _12="";
var _13;
var _14;
var _15=false;
_14=setInterval(function(){
if(document.body!=undefined){
if(_15==false){
document.body.style.display="none";
}
clearInterval(_14);
}
},1);
function doEmbed(){
if(_15){
return;
}
_15=true;
document.body.style.display="block";
if(_e==true){
if(_11!="index.html"){
document.location.href=_11+"#"+_12;
return;
}
thetainteractive.utilities.History.SWFID(_5);
var _16=new deconcept.SWFObject(_4,_5,"100%","100%","8",_6,true);
if(_8){
_16.setAttribute("redirectUrl",_8+"?flash=false");
}
_16.write(_3);
ResizeFlash(0,0);
if(_7){
var _17=document.createElement("div");
_17.id="redrocket-soundtrack";
_17.style.height="0px";
_17.style.overflow="hidden";
var _18=new FlashObject("assets/movies/soundtrack.swf","soundtrack","100%","100%","8");
_18.write(_17);
document.body.appendChild(_17);
}
var _19=new thetainteractive.classes.AjaxConnection();
_19.onLoad=function(){
_13=this.getXML();
if(_13.getElementsByTagName("title_prefix")[0].childNodes.length==1){
_f=_13.getElementsByTagName("title_prefix")[0].childNodes[0].nodeValue;
}
if(_13.getElementsByTagName("title_postfix")[0].childNodes.length==1){
_10=_13.getElementsByTagName("title_postfix")[0].childNodes[0].nodeValue;
}
redrocketcms.classes.FlashSite.titleFunction(thetainteractive.utilities.History.getHistory());
};
_19.load("index.xml");
unFocus.History.addEventListener("historyChange",redrocketcms.classes.FlashSite.titleFunction);
}
}
function titleEvent(_1a){
var _1b=_1a.split("-");
for(var i=0;i<_1b.length;++i){
_1b[i]=_1b[i].substring(0,1).toUpperCase()+_1b[i].substring(1);
}
_1b.pop();
document.title=_f+_1b.join(" ")+_10;
}
function resizeEvent(w,h){
if(_9=="AutoHeight"){
resizeAutoHeight(h);
}else{
if(_9=="ExactHeight"){
resizeExactHeight(h);
}
}
}
function resizeAutoHeight(h){
var _20=thetainteractive.utilities.getBrowserDimensions();
var _21=document.getElementById(_3);
var _22=document.getElementById(_5);
var _23;
_23=parseInt(h);
_23=isNaN(_23)?0:_23;
_23+=_a;
if(_23<_b){
_23=_b;
}
if(_23<_20[1]){
_23="100%";
}else{
_23=_23+"px";
}
_21.style.height=_23;
_22.style.height=_23;
window.scrollTo(0,0);
window.focus();
}
function resizeExactHeight(h){
var _25=document.getElementById(_3);
var _26=document.getElementById(_5);
var _27;
_27=parseInt(h);
_27=isNaN(_27)?0:_27;
_27+=_a;
if(_27<_b){
_27=_b;
}
_27=_27+"px";
_25.style.height=_27;
_26.style.height=_27;
window.scrollTo(0,0);
window.focus();
}
this.start=function(){
doEmbed();
};
this.resizeFunction=function(w,h){
resizeEvent(w,h);
};
this.titleFunction=function(str){
titleEvent(str);
};
this.setContainerId=function(str){
_3=str;
};
this.setSwfPath=function(str){
_4=str;
};
this.setSwfId=function(str){
_5=str;
};
this.setSwfColor=function(str){
_6=str;
};
this.useSoundtrack=function(_2f){
_7=_2f;
};
this.setRedirect=function(str){
_8=str;
};
this.setSiteRootPath=function(str){
_11=str;
};
this.setSiteRootHash=function(str){
_12=str;
};
this.setResizeStyle=function(str){
_9=str;
};
this.setResizeMetrics=function(n1,n2,n3,n4){
if(n1){
_a=n1;
}
if(n2){
_b=n2;
}
if(n3){
_c=n3;
}
if(n4){
_d=n4;
}
};
this.isLoaded=function(){
return _e;
};
};
}
function ResizeFlash(w,h){
redrocketcms.classes.FlashSite.resizeFunction(w,h);
}
FlashSite=redrocketcms.classes.FlashSite;

