function okno(url, width, height) {
	var gallery = '';
	if (!gallery.closed && gallery.location) {
		gallery.location.href = url;
	} else {
		gallery = window.open(url, 'ok', 'width='+width+',height='+height+',top=10,left=10,menubar=no,location=no,resizable=no,scrollbars=yes,statusbar=no,toolbar=no');
		if (!gallery.opener) gallery.opener = self;
		if (window.focus) {gallery.focus()}
		return false;
	}
}

function org_okno2(n,url, width, height,gora,lewo) {
	var gallery = '';
	if (!gallery.closed && gallery.location) {
		gallery.location.href = url;
	} else {
		gallery = window.open(url, n, 'width='+width+',height='+height+',top='+gora+',left='+lewo+',menubar=no,location=no,resizable=yes,scrollbars=yes,statusbar=no,toolbar=no');
		if (!gallery.opener) gallery.opener = self;
		if (window.focus) {gallery.focus()}
		return false;
	}
}
function org_okno(n,url, width, height,gora,lewo){org_okno2(n,url, width, height,gora,lewo);}

function ntkal(kp,obr){org_okno2('pow','/pow.php?obr=/i_kalendarze/'+kp+'/p'+obr+'.jpg',400,500,(screen.height-500)/2,(screen.width-400)/2);}
function pokaz_znakowanie(id){org_okno2('znak_pok','/pow_znakowanie.php?id='+id,600,600,20,120);}
function haft_info(kp){org_okno2('haft','/ss_haft.php?kp='+kp,500,400,20,20);}


//nowe!!!!!!
function $_(id){return document.getElementById(id);}

function zwzr(id,li)
{
  if($_('number'+id).style.display=="none")
  {$_('number'+id).style.display="block";li.style.background="url('/i/sprite.gif') #424242 no-repeat right -162px";}
  else
  {$_('number'+id).style.display="none";li.style.background="url('/i/sprite.gif') #424242 no-repeat right -118px";}
}


function ostatni_projekt_kosz(kp,t)
{
if(t==0){org_okno2('ospr','/sk/n_ostatni_projekt.php?rodz=1&kp='+kp+'&t='+t,500,400,10,10);}
if(t==1){org_okno2('ospr','/sk/n_ostatni_projekt.php?rodz=1&kp='+kp+'&t='+t,500,400,20,20);}
}

function ok_ref(zdj)
{
org_okno2('refzdf','/refpow.php?zdj='+zdj,700,700,10,100);
}

function wybrane_tlo(n,sc)
{
if(n==1){org_okno2('tlow','/i_tla_wizytowki/tlo2.php?wy2='+sc,400,300,20,20);}
if(n==2){org_okno2('tlow1','/i_tla_podklady/tlo2.php?wy2='+sc,600,400,20,20);}
if(n==3){org_okno2('tlow2','/i_tla_kalendarze/tlo2.php?wy2='+sc,400,300,20,20);}
if(n==4){org_okno2('tlow3','/i_tla2_kalendarze/tlo2.php?wy2='+sc,400,300,20,20);}
}


function wybierz_tlo(tlo_rodzaj)
{
if(tlo_rodzaj==0){org_okno2('naszepreace','/nasze_prace/index.php',990,600,10,10);}
if(tlo_rodzaj==1){org_okno2('wtlo','/i_tla_wizytowki/tlo.php?wy1='+$_('fgl').tlo_wizytowki_kod1.value+'&wy2='+$_('fgl').tlo_wizytowki_kod2.value,700,600,10,10);}
if(tlo_rodzaj==2){org_okno2('wtlo','/i_tla_podklady/tlo.php?wy1='+$_('fgl').tlo_wizytowki_kod1.value+'&wy2='+$_('fgl').tlo_wizytowki_kod2.value,600,550,10,10);}
if(tlo_rodzaj==3){org_okno2('wtlo','/i_tla_kalendarze/tlo.php?wy1='+$_('fgl').tlo_wizytowki_kod1.value+'&wy2='+$_('fgl').tlo_wizytowki_kod2.value,920,550,10,10);}
if(tlo_rodzaj==4){org_okno2('wtlo','/i_tla2_kalendarze/tlo.php?wy1='+$_('fgl').tlo_wizytowki_kod1.value+'&wy2='+$_('fgl').tlo_wizytowki_kod2.value,990,550,10,10);}
}

function formatnumber(num)
{
if (isNaN(num))
{
num = "0";
}
sign = (num == (num = Math.abs(num)));
num = Math.floor(num*100+0.50000000001);
cents = num%100;
num = Math.floor(num/100).toString();
if(cents<10)
{
cents = "0" + cents;
}
for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
{
num = num.substring(0,num.length-(4*i+3))+' '+ num.substring(num.length-(4*i+3));
}
return (((sign)?'':'-') + num + '.' + cents);
}


function formatnumber2(num)
{
if (isNaN(num))
{
num = "0";
}
sign = (num == (num = Math.abs(num)));
num = Math.floor(num*100+0.50000000001);
cents = num%100;
num = Math.floor(num/100).toString();
if(cents<10)
{
cents = "0" + cents;
}
for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
{
num = num.substring(0,num.length-(4*i+3))+''+ num.substring(num.length-(4*i+3));
}
return (((sign)?'':'-') + num + '.' + cents);
}

function sz(n,reg,dis)
{
document.getElementById("bok_window").innerHTML="proszę czekać...<br><br><br>";
document.getElementById("bok_window").style.background="url('/i/loading.gif') no-repeat center bottom";

var f=document.getElementById("fn");
f.bok_se.value=n;
f.region.value=reg;
advAJAX.submit(document.getElementById("fn"), {disableForm : dis,
onInitialization : function(obj){},
onComplete : function() {},
onSuccess : function(obj){
document.getElementById("bok_window").style.background="none";
document.getElementById("bok_window").innerHTML=obj.responseText;
},
onError : function(obj) {
}
});
return false; }
function regs(id){sz(2,id,false);}



function trimAll(sString)
{
while (sString.substring(0,1) == ' ')
{
sString = sString.substring(1, sString.length);
}
while (sString.substring(sString.length-1, sString.length) == ' ')
{
sString = sString.substring(0,sString.length-1);
}
return sString;
}



function check_email(e)
{
var testresults
var str=e;
var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
if (filter.test(str))
testresults=true
else
{testresults=false}
return (testresults)
}


function f_reg_err(f,i)
{

if(i==0)
{f.style.borderColor="#BEBEBE";}
else
{f.style.borderColor="#FF0000";}

}

function f_reg()
{
var f=$_('form_reg');
var err1=0;
var err2=0;
var err3=0;
var err_te="";

f_reg_err(f.e_mail,0);
f_reg_err(f.h1,0);
f_reg_err(f.h2,0);

f_reg_err(f.nazwisko,0);
f_reg_err(f.ulica,0);
f_reg_err(f.kod_pocztowy,0);
f_reg_err(f.poczta,0);
f_reg_err(f.nip,0);

f_reg_err(f.telefon1,0);
f_reg_err(f.osoba_kontaktowa,0);


if(trimAll(f.e_mail.value)==""){f_reg_err(f.e_mail,1);err1=1;}

if(trimAll(f.h1.value)==""){f_reg_err(f.h1,1);err1=1;}
if(trimAll(f.h2.value)==""){f_reg_err(f.h2,1);err1=1;}

if(trimAll(f.nazwisko.value)==""){f_reg_err(f.nazwisko,1);err1=1;}
if(trimAll(f.ulica.value)==""){f_reg_err(f.ulica,1);err1=1;}
if(trimAll(f.kod_pocztowy.value)==""){f_reg_err(f.kod_pocztowy,1);err1=1;}
if(trimAll(f.poczta.value)==""){f_reg_err(f.poczta,1);err1=1;}
if(trimAll(f.nip.value)==""){f_reg_err(f.nip,1);err1=1;}
if(trimAll(f.telefon1.value)==""){f_reg_err(f.telefon1,1);err1=1;}
if(trimAll(f.osoba_kontaktowa.value)==""){f_reg_err(f.osoba_kontaktowa,1);err1=1;}

//eml
if(trimAll(f.e_mail.value)!="" && check_email(f.e_mail.value)==false){f_reg_err(f.e_mail,1);err2=1;}

if(trimAll(f.h1.value)!="" && trimAll(f.h2.value)!="" && trimAll(f.h1.value)!=trimAll(f.h2.value)){f_reg_err(f.h1,1);f_reg_err(f.h2,1);err3=1;}

if(err1==1 || err2==1 || err3==1)
{
if(err1==1){err_te="Wypełnij wszystkie pola !<br>";}
if(err2==1){err_te=err_te+"Podany adres e-mail nie jest prawidłowy !<br>";}
if(err3==1){err_te=err_te+"Podane hasła są różne !<br>";}

$_('log_err').innerHTML=err_te;
$_('log_err').style.display="block";
return false;
}

$_('log_err').style.display="none";
$_('reg_button').value="Czekaj...";
$_('reg_czekaj').style.background="url('/i/loading.gif') no-repeat center bottom";



advAJAX.submit(f, {
onInitialization : function(obj){},
onComplete : function(){},
onSuccess : function(obj)
{

var commtxt=obj.responseText;

if(commtxt>=1 && commtxt<=3)
{

if(commtxt==1){$_('log_err').innerHTML="Klient z podanym adresem e-mail jest już zarejestrowany !<br>Klient z podanym NIP jest już zarejestrowany !";}
if(commtxt==2){$_('log_err').innerHTML="Klient z podanym adresem e-mail jest już zarejestrowany !";}
if(commtxt==3){$_('log_err').innerHTML="Klient z podanym NIP jest już zarejestrowany !";}

$_('reg_button').value="Rejestracja";
$_('reg_czekaj').style.background="none";
$_('log_err').style.display="block";
}

if(commtxt==4){location.href="/?c=8&nr=1";}
},
onError : function(obj){}
});

return false;
}


function f_edprof(n)  //profil
{
var f=$_('ed_prof'+n);


var err_te="";

if(n==1)
{
if(trimAll(f.e_mail.value)==""){err_te="Podaj adres e-mail !";}
if(trimAll(f.e_mail.value)!="" && check_email(f.e_mail.value)==false){err_te="Podany adres e-mail nie jest prawidłowy !";}
}

if(n==2)
{
if(trimAll(f.h1.value)=="" || trimAll(f.h2.value)==""){err_te="Podaj nowe hasło !";}
if(trimAll(f.h1.value)!="" && trimAll(f.h2.value)!="" && trimAll(f.h1.value)!=trimAll(f.h2.value)){err_te="Podane hasła są różne !";}
}

if(err_te!="")
{
$_('log_err'+n).innerHTML=err_te;
$_('log_err'+n).style.display="block";
return false;
}

$_('log_err'+n).style.display="none";
$_('pr_butt'+n).value="Czekaj...";

advAJAX.submit(f, {
onInitialization : function(obj){},
onComplete : function(){},
onSuccess : function(obj)
{

var commtxt=obj.responseText;

if(n==1 && commtxt==2){$_('log_err'+n).innerHTML="Istnieje już inny klient z podanym adresem e-mail !";}
if(n==1 && commtxt==1){$_('log_err'+n).innerHTML="Adres e-mail został zmieniony";}
if(n==2){$_('log_err'+n).innerHTML="Hasło zostało zmienione";f.h1.value="";f.h2.value="";}

$_('pr_butt'+n).value="Zmień";
$_('log_err'+n).style.display="block";


},
onError : function(obj){}
});

return false;
}


function sk_zloz_zamowienie(jest_proj)
{
var f=$_('frm_kosz');
if(f.regulamin.checked==false){window.alert("Nie zapoznałeś się z regulaminem !");return;}
if(trimAll(f.zamowienie_sklada.value)==""){window.alert("Wypełnij pole [zamówienie składa] !");return;}
if(trimAll(f.zam_tel.value)==""){window.alert("Wypełnij pole [telefon] !");return;}
if(trimAll(f.zam_eml.value)==""){window.alert("Wypełnij pole [e-mail] !");return;}

if(jest_proj>0){
if(trimAll(f.spp2.value)==""){window.alert("Wypełnij pole [sposób przesłania projektu] !");return;}
}

if(!confirm("Czy na pewno chcesz złożyć zamówienie ?")){return;}
f.submit();
}

function sk_del_kosz(id)
{
if(!confirm("Czy na pewno chcesz usunąć ten produkt ?")){return;}
location.href='/twoj_koszyk/?delksz='+id;
}

//przeniesone
function cz_liczba(kwota)
{
if(kwota.search(/^[0-9]*$/) == -1 || kwota=="")
{return 0;}
else
{return 1;}
}

function keyCheck(eventObj, obj,np){
var keyCode
if (document.all){
keyCode=eventObj.keyCode}
else{keyCode=eventObj.which}
var str=obj.value
if((keyCode < 48 || keyCode > 58))
{return false}
else
{n_nr_pola=np;return true}
}

function sprawdz(ilosc1,ilosc_minimalna,gradient)
{
var ilosc;
ilosc=ilosc1;
//window.alert(isNaN(ilosc));
if(ilosc.search(/^[0-9]*$/) == -1 || ilosc=="")
if(isNaN(ilosc)==true)
{
window.alert("Brak wartości lub zła wartość w polu [ilość sztuk] !");
return "1";
}

if(ilosc<ilosc_minimalna)
{
//window.alert("Podana ilość musi być większa od minimalnej ilości zamówienia !");
return "2";
}

var grad
grad=Math.floor(ilosc/gradient);
if(grad*gradient!=ilosc)
{
//window.alert("Podana ilość musi być wielokrotnością liczby "+ gradient+" !");
//return "1";
return "2";
}
return "0";
}


function tloczenie_zaz()
{
if($_('fgl').tloczenie_zam.checked==true)
{$_('fgl').ilosc_kolorow_pow_1.value=1;}
else
{$_('fgl').ilosc_kolorow_pow_1.value=0;}
}

function serp(k,n,p)
{
if(p==1)
{
if(n==1 && k.value=="Nazwa produktu..."){k.value="";}
if(n==2 && trimAll(k.value)==""){k.value="Nazwa produktu...";}
}

if(p==2)
{
if(n==1 && k.value=="Cena od..."){k.value="";}
if(n==2 && trimAll(k.value)==""){k.value="Cena od...";}
}

if(p==3)
{
if(n==1 && k.value=="Cena do..."){k.value="";}
if(n==2 && trimAll(k.value)==""){k.value="Cena do...";}
}
}




/*********************
//* jQuery Multi Level CSS Menu #2- By Dynamic Drive: http://www.dynamicdrive.com/
//* Last update: Nov 7th, 08': Limit # of queued animations to minmize animation stuttering
//* Menu avaiable at DD CSS Library: http://www.dynamicdrive.com/style/
*********************/

//Specify full URL to down and right arrow images (23 is padding-right to add to top level LIs with drop downs):
var arrowimages={down:['downarrowclass', '/i/prz.gif', 10], right:['rightarrowclass', '/i/prz.gif']}

var jqueryslidemenu={

animateduration: {over: 1, out: 1}, //duration of slide in/ out animation, in milliseconds

buildmenu:function(menuid, arrowsvar){
	jQuery(document).ready(function($){
		var $mainmenu=$("#"+menuid+">ul")
		var $headers=$mainmenu.find("ul").parent()
		$headers.each(function(i){
			var $curobj=$(this)
			var $subul=$(this).find('ul:eq(0)')
			this._dimensions={w:this.offsetWidth, h:this.offsetHeight, subulw:$subul.outerWidth(), subulh:$subul.outerHeight()}
			this.istopheader=$curobj.parents("ul").length==1? true : false
			$subul.css({top:this.istopheader? this._dimensions.h+"px" : 0})
	         	$curobj.hover(
				function(e){
					var $targetul=$(this).children("ul:eq(0)")
					this._offsets={left:$(this).offset().left, top:$(this).offset().top}
					var menuleft=this.istopheader? 0 : this._dimensions.w
					menuleft=(this._offsets.left+menuleft+this._dimensions.subulw>$(window).width())? (this.istopheader? -this._dimensions.subulw+this._dimensions.w : -this._dimensions.w) : menuleft
					if ($targetul.queue().length<=1) //if 1 or less queued animations
						$targetul.css({left:menuleft+"px", width:this._dimensions.subulw+'px'}).slideDown(jqueryslidemenu.animateduration.over)
				},
				function(e){
					var $targetul=$(this).children("ul:eq(0)")
					$targetul.slideUp(jqueryslidemenu.animateduration.out)
				}
			) //end hover
		}) //end $headers.each()
		$mainmenu.find("ul").css({display:'none', visibility:'visible'})
	}) //end document.ready
}
}

//build menu with ID="myslidemenu" on page:
jqueryslidemenu.buildmenu("myslidemenu", arrowimages)

/*sw obj*/
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;