/* =============================================================================================
ANFANG - Globales Popup-Script. Sämtliche Einstellungen lassen 
sich damit dezentral direkt im Aufruf des Popups vornehmen. 
Dadurch brauchen wir nicht mehr für jedes Popup eine Extra Funktion!
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
So sieht der Popup-Aufruf: <a onclick="globalPopup('/verzeichnis/seite.html','name',
'height=100,width=100,scrollbars=yes,menubar=no,toolbar=no');return false;">Link</a>
===============================================================================================*/
function globalPopup(url,name,params) {
 var sizeX = 0;
 var sizeY = 0;
 var winX = screen.availWidth;
 var winY = screen.availHeight;
 var tmpArray = params.split(',');
 for (var i = 0; i < tmpArray.length; i++) {
  if (tmpArray[i].indexOf('width') != -1) {
   var tmpArray2 = tmpArray[i].split('=');
   sizeX = tmpArray2[1];
  }
  if (tmpArray[i].indexOf('height') != -1) {
   var tmpArray2 = tmpArray[i].split('=');
   sizeY = tmpArray2[1];
  }
 }
 var centerX = Math.round(winX / 2 - sizeX / 2);
 var centerY = Math.round(winY / 2 - sizeY / 2);
 params += ',left=' + centerX + ',top=' + centerY;
 var pWindow = open(url,name,params).focus();
}
/* =====================================================================================*/
/* ENDE - Globales Popup-Scripts */ 
/* =====================================================================================*/

function popupSoftwareAnforderung(url,name,params) {
 var sizeX = 0;
 var sizeY = 0;
 var winX = screen.availWidth;
 var winY = screen.availHeight;
 var tmpArray = params.split(',');
 for (var i = 0; i < tmpArray.length; i++) {
  if (tmpArray[i].indexOf('width') != -1) {
   var tmpArray2 = tmpArray[i].split('=');
   sizeX = tmpArray2[1];
  }
  if (tmpArray[i].indexOf('height') != -1) {
   var tmpArray2 = tmpArray[i].split('=');
   sizeY = tmpArray2[1];
  }
 }
 var centerX = Math.round(winX / 2 - sizeX / 2);
 var centerY = Math.round(winY / 2 - sizeY / 2);
 params += ',left=' + centerX + ',top=' + centerY;
 var pWindow = open(url,name,params).focus();
}

function checkRequiredField(input)
{
if ((window.document.Form1.domain.value == "Wunschname") ||
(window.document.Form1.domain.value == "") ||
(window.document.Form1.domain.value == " ")
) {
alert('Sie haben vergessen, einen Domain-Namen anzugeben.');
return false;
} else {
if (window.document.Form1.domain.value.indexOf(".") != -1) {
alert('Bitte geben Sie einen Domain-Namen ohne Punkt ein!');
return false;
}
return true;
}
}
 

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_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_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];}
}
 
//topnav
function show(id_active)
{
if(document.getElementById)
document.getElementById(id_active).style.display = "inline";
}
 
 //topnav
function NOshow()
{
 if(document.getElementById)
     document.getElementById(1).style.display = "none";
     document.getElementById(2).style.display = "none";
     document.getElementById(3).style.display = "none";
     document.getElementById(4).style.display = "none";
     document.getElementById(5).style.display = "none";
     document.getElementById(6).style.display = "none";
}
 
function popup(url, breite, hoehe, scrol, resize){
var links = screen.width - breite; //Bildschirmbreite
var hoch = screen.height - hoehe; //Bildschirmhhe
var popleft = links/2;
var poptop = hoch/2;
obj=open(url, "popup", "width="+ breite +",height=" + hoehe +",top="+ poptop +",left="+ popleft +",resizable="+ resize +",directories=no,scrollbars="+ scrol +",menubar=no,location=no,toolbar=no")
obj.window.focus()
}

 
function easypopup(url, breite, hoehe) {
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+oben+",left ="+links);
}



function popup_tabelle(url, breite, hoehe, scrol, resize){
var links = screen.width - breite; //Bildschirmbreite
var hoch = screen.height - hoehe; //Bildschirmhhe
var popleft = links/2;
var poptop = hoch/2;
obj=open(url, "popup", "width="+ breite +",height=" + hoehe +",top="+ poptop +",left="+ popleft +",resizable="+ resize +",directories=no,scrollbars="+ scrol +",menubar=no,location=no,toolbar=no")
obj.window.focus()
}

function openAnkerWindow(url){
var links = screen.width - 590; //Bildschirmbreite
var hoch = screen.height - 300; //Bildschirmhhe
var popleft = links/2;
var poptop = hoch/2;
obj=open(url, "popup", "width=590,height=300,top="+ poptop +",left="+ popleft +",directories=no,scrollbars=yes,menubar=no,location=no,toolbar=no")
obj.window.focus()
}
 
function anzahl() {
 MeinFenster =
 window.open("/full/features.html#anzahl", "x1", "width=590,height=300,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function contact() {
 MeinFenster =
 window.open("https://www.strato-mailcenter.com/welcome.php", "x2", "width=580,height=480,scrollbars=yes,menubar=no,toolbar=no,location=no,rezizeable=yes");
}
 
function orderLivepages(){
remote = window.open("http://www.livepages.de/wizard/marketing/","remotewin","scrollbars=yes,resizable=yes,menubar=no,toolbar=no,width=800,height=600");
// remote.location.href = "http://www.livepages.de/wizard/marketing/";
if (remote.opener == null) remote.opener = window; remote.opener.name = "opener";
}
 
function empfehlen_verdienen(url){
 var hoch   = screen.height - 600; //Bildschirmhhe 
 var links   = screen.width - 800;
 var popleft  = links/2;
 var poptop  = hoch/2;
  obj=open("http://ad.zanox.com/ppc/?1406988C747250562Tatwi71d", "popup", "width=800,height=600,top="+ poptop +",left="+ popleft +",directories=no,scrollbars=yes,menubar=no,resizable=no,status=no,toolbar=no")
  obj.window.focus()
}
 
function rueckrufservice(){
remote = window.open("http://www.strato.de/cgi-bin/strato/skydsl/skyDSL.pl?token=telBeratung&&type=skyDSL","remotewin","scrollbars=yes,resizable=yes,menubar=no,toolbar=no,width=800,height=600");
if (remote.opener == null) remote.opener = window; remote.opener.name = "opener";
}
 
function tabelle() {
window.open('/webhosting/tabelle.html','tabelle','toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=400');
}
 
//shop-scripte
 
function openFlashDemo(){
 var hoch   = screen.height - 540; //Bildschirmhhe 
 var links   = screen.width - 700;
 var popleft  = links/2;
 var poptop  = hoch/2;
  obj=open("http://www.strato.de/shop/flash_demoshop/guidedtour.html", "popup", "width=700,height=540,top="+ poptop +",left="+ popleft +",directories=no,scrollbars=no,menubar=no,resizable=no,status=no,toolbar=no")
  obj.window.focus()
}
 
function ebay() {
 MeinFenster =
 window.open("/shops/business/services.html#ebay", "x", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function kelkoo() {
 MeinFenster =
 window.open("/shops/business/services.html#kelkoo", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function froogle() {
 MeinFenster =
 window.open("/shops/business/services.html#froogle", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function guenstiger() {
 MeinFenster =
 window.open("/shops/business/services.html#guenstiger", "y", "width=690,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function preissuchmachine() {
 MeinFenster =
 window.open("/shops/business/services.html#preissuchmachine", "y", "width=690,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function openPopSoftware(){
 var hoch   = screen.height - 540; //Bildschirmhhe 
 var links   = screen.width - 600;
 var popleft  = links/2;
 var poptop  = hoch/2;
  obj=open("/shop/software_strato_shop.html", "popup", "width=600,height=540,top="+ poptop +",left="+ popleft +",directories=no,scrollbars=yes,menubar=no,resizable=no,status=no,toolbar=no")
  obj.window.focus()
}
 
function openWWpopup(){
 var hoch   = screen.height - 350; //Bildschirmhhe 
 var links   = screen.width - 590;
 var popleft  = links/2;
 var poptop  = hoch/2;
  obj=open("/strato_shop/busi_warenwirtschaft_c.html", "popup", 
"width=590,height=350,top="+ poptop +",left="+ popleft 
+",directories=no,scrollbars=yes,menubar=no,resizable=no,status=no,toolbar=no")
  obj.window.focus()
}
 
function pangora() {
 MeinFenster =
 window.open("/shops/business/services.html#pangora", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function trusted() {
 MeinFenster =
 window.open("/shops/business/services.html#trusted", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function mcert() {
 MeinFenster =
 window.open("/shops/business/services.html#mcert", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function uebersicht() {
 MeinFenster =
 window.open("/shops/business/list.html", "y", "width=610,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no,resizable=yes");
}
 
function worldpay() {
 MeinFenster =
 window.open("/shops/business/services.html#worldpay", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}

function paynova() { 
 MeinFenster =
 window.open("/shops/paynova.html", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}

function paypal() {
 MeinFenster =
 window.open("/shops/business/popup_paypal.html", "y", "width=590,height=500,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
//shop-ende
 
//Referenz fuer Javascript-Popups zum aufrufenden Fenster
window.name = "main";
 

function traffic_unlimited() {
 MeinFenster = window.open("/server/popup_traffic_unlimited.html", "x","width=590,height=380,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
function ipro() {
 MeinFenster = window.open("/server/ipro_testen.html", "x","width=590,height=380,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 

// DSL-Vorteils-Paket unter der linker Navigation einblenden

// Auskommentiert von Karsten am 23.05.2006
//
//function dslVorteilsPaket() { 
//document.write('<div style=\"padding-top:15px;\"><a href=\"/dsl/pakete.html\" target=\"_top\"><img src=\"/imperia/md/images/strato_de/dsl/dsl_vorteils_paket.gif\" width=\"110\" height=\"99\" border=\"0\"></a></div>'); 
//}
//


// Vitrado Cookie-Checks START
 
// Cookie abfragen
function getCookie(name)
{ 
    var dc = document.cookie;
    var prefix = name + "=";
    var begin = dc.indexOf("; " + prefix);
    if (begin == -1)
    {
        begin = dc.indexOf(prefix);
        if (begin != 0) return null;
    }
    else
    {
        begin += 2;
    }
    var end = document.cookie.indexOf(";", begin);
    if (end == -1)
    {
        end = dc.length;
    }
    return unescape(dc.substring(begin + prefix.length, end));
}
 
// Auswertung
function checkVitradoCookie() {
if(getCookie("VITRADO")) { 
// wenn vitrado-cookie da ist, kein callback-teaser anzeigen

} else { 
// wenn KEIN! vitrado-cookie da ist, callback-teaser anzeigen
document.write('<div style=\"padding-top:15px;\"><a href=\"https://www.strato-mailcenter.com/dslcallback\" target=\"_blank\"><img src=\"/imperia/md/images/strato_de/dsl/call_back_dsl.jpg\" width=\"145\" height=\"97\" border=\"0\"></a></div>'); 
} 
}
 
// Vitrado Cookie-Checks ENDE

   
/**
 * Sets a Cookie with the given name and value.
 *
 * name       Name of the cookie
 * value      Value of the cookie
 * [expires]  Expiration date of the cookie (default: end of current session)
 * [path]     Path where the cookie is valid (default: path of calling document)
 * [domain]   Domain where the cookie is valid
 *              (default: domain of calling document)
 * [secure]   Boolean value indicating if the cookie transmission requires a
 *              secure transmission
 */

function setCookie(name, value, expires, path, domain, secure) {
    document.cookie= name + "=" + escape(value) +
        ((expires) ? "; expires=" + expires.toGMTString() : "") +
        ((path) ? "; path=" + path : "") +
        ((domain) ? "; domain=" + domain : "") +
        ((secure) ? "; secure" : "");
}

/**
 * Deletes the specified cookie.
 *
 * name      name of the cookie
 * [path]    path of the cookie (must be same as path used to create cookie)
 * [domain]  domain of the cookie (must be same as domain used to create cookie)
 */
function deleteCookie(name, path, domain) {
    if (getCookie(name)) {
        document.cookie = name + "=" +
            ((path) ? "; path=" + path : "") +
            ((domain) ? "; domain=" + domain : "") +
            "; expires=Thu, 01-Jan-70 00:00:01 GMT";
    }
}



 
//verkrzte Anzeige des Sternchentextes. Erwartet wird: Text mit id 'frnProdFtnote', link mit 'link_frnProdFtlink'
function hidefrnProdFtnote(length){
if(document.getElementById('frnProdFtnote')) {
sterntext = document.getElementById('frnProdFtnote').innerHTML;


document.getElementById('frnProdFtnote').innerHTML = sterntext.slice(0,length) + "..."; 
document.getElementById('frnProdFtlink').style.display = "block"; 
}
} 
function showfrnProdFtnote(){ 
if(document.getElementById('frnProdFtnote')) {
document.getElementById('frnProdFtnote').innerHTML = sterntext; 
document.getElementById('frnProdFtlink').style.display = "none"; 
}
}

function wiso() {
 MeinFenster = window.open("/webhosting/wiso.html", "x","width=590,height=380,scrollbars=yes,menubar=no,toolbar=no,location=no");
}

function google() {
 MeinFenster = window.open("/webhosting/google.html", "x","width=590,height=380,scrollbars=yes,menubar=no,toolbar=no,location=no");
}
 
/* PRODUKNAVI RECHTE SPALTE */
function produktNavi(welchesSelect) {
inhalt = eval('document.forms.produktnavi.'+welchesSelect+'.options[document.forms.produktnavi.'+welchesSelect+'.selectedIndex].value');
document.forms.produktnavi.action = inhalt;
if(inhalt != "") {

if(inhalt == "http://www.strato-faq.de") {document.forms.produktnavi.target="_blank";}
if(inhalt == "http://www.strato.de/imperia/md/content/flash/flyer/flyer.pdf") {document.forms.produktnavi.target="_blank";}

document.forms.produktnavi.submit();
}
}
 

/* =====================================================================================*/
/* FACELIFT NUR BEI DER ENTWICKLUNG NÖTIG*/ 
/* 17 = CTRL */
/* 16 = SHIFT */

function TasteGedrueckt (Ereignis) {
  if (!Ereignis)
    Ereignis = window.event;
  if (Ereignis.which) {
    Tastencode = Ereignis.which;
  } else if (Ereignis.keyCode) {
    Tastencode = Ereignis.keyCode;
  }

if(document.getElementById("evilidea")){
if(Tastencode == 16)
document.getElementById("evilidea").style.display = "inline";
}


if(Tastencode == 17)
document.body.className = "faceliftsizeOn";
 
} 

function TasteLosgelassen (Ereignis) {
  if (!Ereignis)
    Ereignis = window.event;
  if (Ereignis.which) {
    Tastencode = Ereignis.which;
  } else if (Ereignis.keyCode) {
    Tastencode = Ereignis.keyCode;
  }
if(document.getElementById("evilidea")){
  if(Tastencode == 16)
document.getElementById("evilidea").style.display = "none";
}

if(Tastencode == 17)
document.body.className = "faceliftsizeOff";
 
}

//document.onkeydown = TasteGedrueckt;
//document.onkeyup = TasteLosgelassen;


//v1.0 VERHINDERT RAHMEN UM FLASHFILME (Karsten 10.11.2006)
//Copyright 2006 Adobe Systems, Inc. All rights reserved.
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '<object ';
  for (var i in objAttrs)
    str += i + '="' + objAttrs[i] + '" ';
  str += '>';
  for (var i in params)
    str += '<param name="' + i + '" value="' + params[i] + '" /> ';
  str += '<embed ';
  for (var i in embedAttrs)
    str += i + '="' + embedAttrs[i] + '" ';
  str += ' ></embed></object>';

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "id":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}

var STRATO_SC_allowMultipleViews = 1; 
function launch_sc() {
if(document.createElement) {var STRATO_speedcheckInit=document.createElement('script');STRATO_speedcheckInit.setAttribute("type","text/javascript");if(location.protocol=="http:")STRATO_speedcheckInit.setAttribute("src", "http://www.strato.de/dsl/_/sc.js");if(location.protocol=="https:"){STRATO_speedcheckInit.setAttribute("src", "https://www.strato.de/dsl/_/sc.js");}document.getElementsByTagName("head").item(0).appendChild(STRATO_speedcheckInit);}
}



/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
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;


function zanox_load(func) {
	var oldonload2 = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	}
	else {
		window.onload = function() {
			oldonload2();
			func();
		}
	}
}

function logthisquickly() {
var log_protocol = window.location.protocol;
var log_referrer = document.referrer;
var log_matching = "www.zanox-affiliate.de";
if(log_protocol == "http:") {

if(log_referrer.match(log_matching)) {

var logimg = document.createElement("IMG");
logimg.setAttribute("id", "logimg");
logimg.setAttribute("width", "1");
logimg.setAttribute("height", "1");
logimg.setAttribute("src", "/clear.gif?log_all_from_"+document.referrer);
document.body.appendChild(logimg);

}

}
}
//zanox_load(logthisquickly);