LITBox=Class.create();
LITBox.prototype={initialize:function(_1){
this.mes=_1;
this.options=Object.extend({width:600,height:500,type:"window",func:null,draggable:true,resizable:true,overlay:true,opacity:1,left:false,top:false,flashheight:false,flashwidth:false},arguments[1]||{});
this.setup();
},setup:function(){
this.rn=(Math.floor(Math.random()*100000000+1));
this.getWindow();
switch(this.options.type){
case "window":
this.d4.innerHTML=this.getAjax(this.mes);
break;
case "alert":
this.d4.innerHTML=this.mes;
break;
case "confirm":
this.d4.innerHTML="<p>"+this.mes+"</p>";
this.button_y=document.createElement("input");
this.button_y.type="button";
this.button_y.value="Yes";
this.d4.appendChild(this.button_y);
this.button_y.d=this.d;
this.button_y.d2=this.d2;
this.button_y.temp=this.options.func;
this.button_y.onclick=this.remove;
this.button_n=document.createElement("input");
this.button_n.type="button";
this.button_n.value="No";
this.d4.appendChild(this.button_n);
this.button_n.d=this.d;
this.button_n.d2=this.d2;
this.button_n.onclick=this.remove;
break;
case "flash":
var fo=new FlashObject(this.mes,"flash movie",this.options.flashwidth,this.options.flashheight,"6.0.29.0");
fo.addParam("menu","false");
fo.write(this.d4);
}
this.display();
},getWindow:function(){
this.over=null;
if(this.options.overlay==true){
this.d=document.createElement("div");
document.body.appendChild(this.d);
this.d.className="LB_overlay";
this.d.style.display="block";
this.d.onclick=this.remove;
}
this.d2=document.createElement("div");
document.body.appendChild(this.d2);
this.d2.className="LB_window";
this.d2.style.height=parseInt(this.options.height)+"px";
this.d3=document.createElement("div");
this.d2.appendChild(this.d3);
this.d3.className="LB_closeAjaxWindow";
this.d3.d2=this.d2;
this.d3.over=this.over;
this.d3.options=this.options;
this.d3.onmouseover=this.getDraggable;
this.d3.onmouseout=this.dropDraggable;
this.close=document.createElement("a");
this.d3.appendChild(this.close);
this.close.d=this.d;
this.close.d2=this.d2;
this.close.onclick=this.remove;
this.close.href="#";
this.close.innerHTML="Close";
this.d4=document.createElement("div");
this.d4.className="LB_content";
this.d4.style.height=parseInt(this.options.height)-30+"px";
this.d4.style.width=parseInt(this.options.width)+"px";
this.d2.appendChild(this.d4);
this.clear=document.createElement("div");
this.d2.appendChild(this.clear);
this.clear.style.clear="both";
if(this.options.resizable){
this.d5=document.createElement("div");
this.d2.appendChild(this.d5);
this.d5.className="LB_resize";
this.d5.d2=this.d2;
this.d5.d2.d4=this.d4;
this.d5.over=this.over;
this.d5.options=this.options;
this.d5.onmouseover=this.getResizer;
this.d5.onmouseout=this.dropResizer;
}
if(this.options.overlay==true){
this.d.d=this.d;
this.d.d2=this.d2;
}
},getDraggable:function(){
if(this.options.draggable){
if(this.resize){
this.resize.destroy();
}
if(!this.drag||(this.drag&&!this.drag.dragging)){
this.drag=new Draggable(this.d2,{});
}
}
},getResizer:function(){
if(this.options.resizable){
if(this.drag){
this.drag.destroy();
}
if(!this.resize||(this.resize&&!this.resize.dragging)){
this.resize=new Resizer(this.d2,{});
}
}
},dropDraggable:function(){
if(this.options.draggable){
if(!this.drag.dragging&&this.drag){
this.drag.destroy();
}
}
},dropResizer:function(){
if(this.options.resizable){
if(!this.resize.dragging&&this.resize){
this.resize.destroy();
}
}
},display:function(){
Element.setOpacity(this.d2,0);
this.position();
new Effect.Opacity(this.d2,{from:0,to:this.options.opacity,duration:0.5});
},position:function(){
var de=document.documentElement;
var w=self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;
var h=self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;
if(window.innerHeight&&window.scrollMaxY){
yScroll=window.innerHeight+window.scrollMaxY;
}else{
if(document.body.scrollHeight>document.body.offsetHeight){
yScroll=document.body.scrollHeight;
}else{
yScroll=document.body.offsetHeight;
}
}
this.d2.style.width=this.options.width+"px";
this.d2.style.display="block";
if(!this.options.left||this.options.left<0){
this.d2.style.left=((w-this.options.width)/2)+"px";
}else{
this.d2.style.left=parseInt(this.options.left)+"px";
}
var _6=this.getPageSize();
var _7=this.getPageScrollTop();
if(this.d2.offsetHeight>h-100){
if(!this.options.top||this.options.top<0){
this.d2.style.top="45px";
}else{
this.d2.style.top=parseInt(this.options.top)+"px";
}
this.d2.style.height=h-100+"px";
this.d4.style.overflow="auto";
}else{
if(!this.options.top||this.options.top<0){
this.d2.style.top=(_7[1]+((_6[1]-this.d2.offsetHeight)/2))+"px";
}else{
this.d2.style.top=parseInt(this.options.top)+"px";
}
}
if(this.d){
this.d.style.height=yScroll+"px";
}
},remove:function(){
if(this.temp){
this.temp();
}
new Effect.Opacity(this.d2,{from:1,to:0,duration:0.5});
if(this.d){
new Effect.Opacity(this.d,{from:0.6,to:0,duration:0.5});
Element.remove(this.d);
}
Element.remove(this.d2);
return false;
},parseQuery:function(_8){
var _9=new Object();
if(!_8){
return _9;
}
var _a=_8.split(/[;&]/);
for(var i=0;i<_a.length;i++){
var _c=_a[i].split("=");
if(!_c||_c.length!=2){
continue;
}
var _d=unescape(_c[0]);
var _e=unescape(_c[1]);
_e=_e.replace(/\+/g," ");
_9[_d]=_e;
}
return _9;
},getPageScrollTop:function(){
var _f;
if(self.pageYOffset){
_f=self.pageYOffset;
}else{
if(document.documentElement&&document.documentElement.scrollTop){
_f=document.documentElement.scrollTop;
}else{
if(document.body){
_f=document.body.scrollTop;
}
}
}
arrayPageScroll=new Array("",_f);
return arrayPageScroll;
},getPageSize:function(){
var de=document.documentElement;
var w=self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;
var h=self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;
arrayPageSize=new Array(w,h);
return arrayPageSize;
},getAjax:function(url){
var _14=false;
if(!_14&&typeof XMLHttpRequest!="undefined"){
_14=new XMLHttpRequest();
}
if(_14.overrideMimeType){
_14.overrideMimeType("text/xml");
}
if(url!=""){
_14.open("GET",url,false);
_14.send(null);
return _14.responseText;
}
}};
var Resizers={drags:[],observers:[],register:function(_15){
if(this.drags.length==0){
this.eventMouseUp=this.endDrag.bindAsEventListener(this);
this.eventMouseMove=this.updateDrag.bindAsEventListener(this);
this.eventKeypress=this.keyPress.bindAsEventListener(this);
Event.observe(document,"mouseup",this.eventMouseUp);
Event.observe(document,"mousemove",this.eventMouseMove);
Event.observe(document,"keypress",this.eventKeypress);
this.drags.push(_15);
}
},unregister:function(_16){
this.drags=this.drags.reject(function(d){
return d==_16;
});
if(this.drags.length==1){
this.drags.pop();
}
if(this.drags.length==0){
Event.stopObserving(document,"mouseup",this.eventMouseUp);
Event.stopObserving(document,"mousemove",this.eventMouseMove);
Event.stopObserving(document,"keypress",this.eventKeypress);
}
},activate:function(_18){
window.focus();
this.activeDraggable=_18;
},deactivate:function(){
this.activeDraggable=null;
},updateDrag:function(_19){
if(!this.activeDraggable){
return;
}
var _1a=[Event.pointerX(_19),Event.pointerY(_19)];
if(this._lastPointer&&(this._lastPointer.inspect()==_1a.inspect())){
return;
}
this._lastPointer=_1a;
this.activeDraggable.updateDrag(_19,_1a);
},endDrag:function(_1b){
if(!this.activeDraggable){
return;
}
this._lastPointer=null;
this.activeDraggable.endDrag(_1b);
this.activeDraggable=null;
},keyPress:function(_1c){
if(this.activeDraggable){
this.activeDraggable.keyPress(_1c);
}
},addObserver:function(_1d){
this.observers.push(_1d);
this._cacheObserverCallbacks();
},removeObserver:function(_1e){
this.observers=this.observers.reject(function(o){
return o.element==_1e;
});
this._cacheObserverCallbacks();
},notify:function(_20,_21,_22){
if(this[_20+"Count"]>0){
this.observers.each(function(o){
if(o[_20]){
o[_20](_20,_21,_22);
}
});
}
},_cacheObserverCallbacks:function(){
["onStart","onEnd","onDrag"].each(function(_24){
Resizers[_24+"Count"]=Resizers.observers.select(function(o){
return o[_24];
}).length;
});
}};
var Resizer=Class.create();
Resizer.prototype={initialize:function(_26){
this.offset=Array();
var _27=Object.extend({handle:false,reverteffect:function(_28,_29,_2a){
var dur=Math.sqrt(Math.abs(_29^2)+Math.abs(_2a^2))*0.02;
_28._revert=new Effect.Move(_28,{x:-_2a,y:-_29,duration:dur});
},zindex:1000,revert:false,scroll:false,scrollSensitivity:20,scrollSpeed:15,snap:false},arguments[1]||{});
this.element=$(_26);
if(_27.handle&&(typeof _27.handle=="string")){
var h=Element.childrenWithClassName(this.element,_27.handle,true);
if(h.length>0){
this.handle=h[0];
}
}
if(!this.handle){
this.handle=$(_27.handle);
}
if(!this.handle){
this.handle=this.element;
}
if(_27.scroll&&!_27.scroll.scrollTo&&!_27.scroll.outerHTML){
_27.scroll=$(_27.scroll);
}
Element.makePositioned(this.element);
this.delta=this.currentDelta();
this.options=_27;
this.dragging=false;
this.oHeight=parseInt(this.element.style.height);
this.oWidth=parseInt(this.element.style.width);
this.eventMouseDown=this.initDrag.bindAsEventListener(this);
Event.observe(this.handle,"mousedown",this.eventMouseDown);
Resizers.register(this);
},destroy:function(){
Event.stopObserving(this.handle,"mousedown",this.eventMouseDown);
Resizers.unregister(this);
},currentDelta:function(){
return ([parseInt(Element.getStyle(this.element,"width")||"0"),parseInt(Element.getStyle(this.element,"height")||"0")]);
},initDrag:function(_2d){
if(Event.isLeftClick(_2d)){
var src=Event.element(_2d);
if(src.tagName&&(src.tagName=="INPUT"||src.tagName=="SELECT"||src.tagName=="OPTION"||src.tagName=="BUTTON"||src.tagName=="TEXTAREA")){
return;
}
if(this.element._revert){
this.element._revert.cancel();
this.element._revert=null;
}
var _2f=[Event.pointerX(_2d),Event.pointerY(_2d)];
var pos=Position.cumulativeOffset(this.element);
this.offset[0]=_2f[0];
this.offset[1]=_2f[1];
Resizers.activate(this);
Event.stop(_2d);
}
},startDrag:function(_31){
this.dragging=true;
if(this.options.zindex){
this.originalZ=parseInt(Element.getStyle(this.element,"z-index")||0);
this.element.style.zIndex=this.options.zindex;
}
if(this.options.ghosting){
this._clone=this.element.cloneNode(true);
Position.absolutize(this.element);
this.element.parentNode.insertBefore(this._clone,this.element);
}
Resizers.notify("onStart",this,_31);
if(this.options.starteffect){
this.options.starteffect(this.element);
}
},updateDrag:function(_32,_33){
if(!this.dragging){
this.startDrag(_32);
}
Position.prepare();
Resizers.notify("onDrag",this,_32);
this.draw(_33);
if(this.options.change){
this.options.change(this);
}
if(this.options.scroll){
this.stopScrolling();
var p;
if(this.options.scroll==window){
with(this._getWindowScroll(this.options.scroll)){
p=[left,top,left+width,top+height];
}
}else{
p=Position.page(this.options.scroll);
p[0]+=this.options.scroll.scrollLeft;
p[1]+=this.options.scroll.scrollTop;
p.push(p[0]+this.options.scroll.offsetWidth);
p.push(p[1]+this.options.scroll.offsetHeight);
}
var _35=[0,0];
if(_33[0]<(p[0]+this.options.scrollSensitivity)){
_35[0]=_33[0]-(p[0]+this.options.scrollSensitivity);
}
if(_33[1]<(p[1]+this.options.scrollSensitivity)){
_35[1]=_33[1]-(p[1]+this.options.scrollSensitivity);
}
if(_33[0]>(p[2]-this.options.scrollSensitivity)){
_35[0]=_33[0]-(p[2]-this.options.scrollSensitivity);
}
if(_33[1]>(p[3]-this.options.scrollSensitivity)){
_35[1]=_33[1]-(p[3]-this.options.scrollSensitivity);
}
this.startScrolling(_35);
}
if(navigator.appVersion.indexOf("AppleWebKit")>0){
window.scrollBy(0,0);
}
Event.stop(_32);
},finishDrag:function(_36,_37){
this.dragging=false;
if(this.options.ghosting){
Position.relativize(this.element);
Element.remove(this._clone);
this._clone=null;
}
Resizers.notify("onEnd",this,_36);
var _38=this.options.revert;
if(_38&&typeof _38=="function"){
_38=_38(this.element);
}
var d=this.currentDelta();
if(_38&&this.options.reverteffect){
this.options.reverteffect(this.element,d[1]-this.delta[1],d[0]-this.delta[0]);
}else{
this.delta=d;
}
this.element.style.zIndex=this.originalZ;
if(this.options.endeffect){
this.options.endeffect(this.element);
}
Resizers.deactivate(this);
},keyPress:function(_3a){
if(_3a.keyCode!=Event.KEY_ESC){
return;
}
this.finishDrag(_3a,false);
Event.stop(_3a);
},endDrag:function(_3b){
if(!this.dragging){
return;
}
this.stopScrolling();
this.finishDrag(_3b,true);
Event.stop(_3b);
this.oWidth=parseInt(this.element.style.width);
this.oHeight=parseInt(this.element.style.height);
},draw:function(_3c){
var pos=Position.cumulativeOffset(this.element);
var d=this.currentDelta();
pos[0]-=d[0];
pos[1]-=d[1];
var p=new Array();
p[0]=this.oWidth+_3c[0]-this.offset[0];
p[1]=this.oHeight+_3c[1]-this.offset[1];
var _40=this.element.style;
if((!this.options.constraint)||(this.options.constraint=="horizontal")){
_40.width=p[0]+"px";
this.element.d4.style.width=p[0]+"px";
}
if((!this.options.constraint)||(this.options.constraint=="vertical")){
_40.height=p[1]+"px";
this.element.d4.style.height=p[1]-30+"px";
}
if(_40.visibility=="hidden"){
_40.visibility="";
}
},stopScrolling:function(){
if(this.scrollInterval){
clearInterval(this.scrollInterval);
this.scrollInterval=null;
Resizers._lastScrollPointer=null;
}
},startScrolling:function(_41){
this.scrollSpeed=[_41[0]*this.options.scrollSpeed,_41[1]*this.options.scrollSpeed];
this.lastScrolled=new Date();
this.scrollInterval=setInterval(this.scroll.bind(this),10);
},scroll:function(){
var _42=new Date();
var _43=_42-this.lastScrolled;
this.lastScrolled=_42;
if(this.options.scroll==window){
with(this._getWindowScroll(this.options.scroll)){
if(this.scrollSpeed[0]||this.scrollSpeed[1]){
var d=_43/1000;
this.options.scroll.scrollTo(left+d*this.scrollSpeed[0],top+d*this.scrollSpeed[1]);
}
}
}else{
this.options.scroll.scrollLeft+=this.scrollSpeed[0]*_43/1000;
this.options.scroll.scrollTop+=this.scrollSpeed[1]*_43/1000;
}
Position.prepare();
Resizers.notify("onDrag",this);
Resizers._lastScrollPointer=Resizers._lastScrollPointer||$A(Resizers._lastPointer);
Resizers._lastScrollPointer[0]+=this.scrollSpeed[0]*_43/1000;
Resizers._lastScrollPointer[1]+=this.scrollSpeed[1]*_43/1000;
if(Resizers._lastScrollPointer[0]<0){
Resizers._lastScrollPointer[0]=0;
}
if(Resizers._lastScrollPointer[1]<0){
Resizers._lastScrollPointer[1]=0;
}
this.draw(Resizers._lastScrollPointer);
if(this.options.change){
this.options.change(this);
}
},_getWindowScroll:function(w){
var T,L,W,H;
with(w.document){
if(w.document.documentElement&&documentElement.scrollTop){
T=documentElement.scrollTop;
L=documentElement.scrollLeft;
}else{
if(w.document.body){
T=body.scrollTop;
L=body.scrollLeft;
}
}
if(w.innerWidth){
W=w.innerWidth;
H=w.innerHeight;
}else{
if(w.document.documentElement&&documentElement.clientWidth){
W=documentElement.clientWidth;
H=documentElement.clientHeight;
}else{
W=body.offsetWidth;
H=body.offsetHeight;
}
}
}
return {top:T,left:L,width:W,height:H};
}};
if(typeof com=="undefined"){
var com=new Object();
}
if(typeof com.deconcept=="undefined"){
com.deconcept=new Object();
}
if(typeof com.deconcept.util=="undefined"){
com.deconcept.util=new Object();
}
if(typeof com.deconcept.FlashObjectUtil=="undefined"){
com.deconcept.FlashObjectUtil=new Object();
}
com.deconcept.FlashObject=function(swf,id,w,h,ver,c,_4d,_4e,_4f,_50){
this.DETECT_KEY=_50?_50:"detectflash";
this.skipDetect=com.deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(swf){
this.setAttribute("swf",swf);
}
if(id){
this.setAttribute("id",id);
}
if(w){
this.setAttribute("width",w);
}
if(h){
this.setAttribute("height",h);
}
if(ver){
this.setAttribute("version",new com.deconcept.PlayerVersion(ver.toString().split(".")));
}
if(c){
this.addParam("bgcolor",c);
}
var q=_4e?_4e:"high";
this.addParam("quality",q);
this.setAttribute("redirectUrl","");
if(_4f){
this.setAttribute("redirectUrl",_4f);
}
if(_4d){
var _52=new com.deconcept.PlayerVersion([6,0,65]);
var _53=com.deconcept.FlashObjectUtil.getPlayerVersion();
if(_53.versionIsValid(_52)&&!_53.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
}
}else{
this.setAttribute("doExpressInstall",false);
}
};
com.deconcept.FlashObject.prototype.setAttribute=function(_54,_55){
this.attributes[_54]=_55;
};
com.deconcept.FlashObject.prototype.getAttribute=function(_56){
return this.attributes[_56];
};
com.deconcept.FlashObject.prototype.getAttributes=function(){
return this.attributes;
};
com.deconcept.FlashObject.prototype.addParam=function(_57,_58){
this.params[_57]=_58;
};
com.deconcept.FlashObject.prototype.getParams=function(){
return this.params;
};
com.deconcept.FlashObject.prototype.getParam=function(_59){
return this.params[_59];
};
com.deconcept.FlashObject.prototype.addVariable=function(_5a,_5b){
this.variables[_5a]=_5b;
};
com.deconcept.FlashObject.prototype.getVariable=function(_5c){
return this.variables[_5c];
};
com.deconcept.FlashObject.prototype.getVariables=function(){
return this.variables;
};
com.deconcept.FlashObject.prototype.getParamTags=function(){
var _5d="";
var key;
var _5f=this.getParams();
for(key in _5f){
_5d+="<param name=\""+key+"\" value=\""+_5f[key]+"\" />";
}
return _5d;
};
com.deconcept.FlashObject.prototype.getVariablePairs=function(){
var _60=new Array();
var key;
var _62=this.getVariables();
for(key in _62){
_60.push(key+"="+_62[key]);
}
return _60;
};
com.deconcept.FlashObject.prototype.getHTML=function(){
var _63="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
_63+="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\"";
var _64=this.getParams();
for(var key in _64){
_63+=" "+key+"=\""+_64[key]+"\"";
}
pairs=this.getVariablePairs().join("&");
if(pairs.length>0){
_63+=" flashvars=\""+pairs+"\"";
}
_63+="></embed>";
}else{
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","ActiveX");
}
_63+="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" id=\""+this.getAttribute("id")+"\">";
_63+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _66=this.getParamTags();
if(_66.length>0){
_63+=_66;
}
var _67=this.getVariablePairs().join("&");
if(_67.length>0){
_63+="<param name=\"flashvars\" value=\""+_67+"\" />";
}
_63+="</object>";
}
return _63;
};
com.deconcept.FlashObject.prototype.write=function(_68){
_68=$(_68);
if(this.skipDetect||this.getAttribute("doExpressInstall")||com.deconcept.FlashObjectUtil.getPlayerVersion().versionIsValid(this.getAttribute("version"))){
if(_68){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMredirectURL",escape(window.location));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);
}
_68.innerHTML=this.getHTML();
}
}else{
if(this.getAttribute("redirectUrl")!=""){
document.location.replace(this.getAttribute("redirectUrl"));
}
}
};
com.deconcept.FlashObjectUtil.getPlayerVersion=function(){
var _69=new com.deconcept.PlayerVersion(0,0,0);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){
_69=new com.deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));
}
}else{
if(window.ActiveXObject){
try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
_69=new com.deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
}
catch(e){
}
}
}
return _69;
};
com.deconcept.PlayerVersion=function(_6c){
this.major=parseInt(_6c[0])||0;
this.minor=parseInt(_6c[1])||0;
this.rev=parseInt(_6c[2])||0;
};
com.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;
};
com.deconcept.util.getRequestParameter=function(_6e){
var q=document.location.search||document.location.href.hash;
if(q){
var _70=q.indexOf(_6e+"=");
var _71=(q.indexOf("&",_70)>-1)?q.indexOf("&",_70):q.length;
if(q.length>1&&_70>-1){
return q.substring(q.indexOf("=",_70)+1,_71);
}
}
return "";
};
if(Array.prototype.push==null){
Array.prototype.push=function(_72){
this[this.length]=_72;
return this.length;
};
}
var getQueryParamValue=com.deconcept.util.getRequestParameter;
var FlashObject=com.deconcept.FlashObject;

