// JavaScript Document
function mailDecode(str){
  var tmp = '';
  var result = '';
  if (str.length >= 3 && str.substr(str.length-3,3) == "aho")
    str = str.substr(0,str.length-3);
  for (i=0; i < str.length; i++)
  {
    tmp = str.charCodeAt(i);
    newCode = tmp - 4;
    newChar = String.fromCharCode(newCode);
    result += newChar;
  }
  return result;
}
function getEmailLink(emailaddr,linktext){
  var addr = mailDecode(emailaddr);
  var ltext = mailDecode(emailaddr);
  if (linktext != null)
  	ltext = mailDecode(linktext);
  return '<a href="mai'+'lto:'+addr+'">'+ltext+'</a>';
}

function getParameter ( queryString, parameterName ) {
	var parameterName = parameterName + "=";
    if ( queryString.length > 0 ) {
    	begin = queryString.indexOf ( parameterName );
	    if ( begin != -1 ) {
    	    begin += parameterName.length;
        	end = queryString.indexOf ( "&" , begin );
        	if ( end == -1 ) 
  	        	end = queryString.length
	        return unescape ( queryString.substring ( begin, end ) );
        }
     	return "";
	}
 	return "";	
}

var Base64 = {
	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
 
	encode : function (input) {
		var output = "";
		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
		var i = 0;
		input = Base64._utf8_encode(input);
		while (i < input.length) {
 
			chr1 = input.charCodeAt(i++);
			chr2 = input.charCodeAt(i++);
			chr3 = input.charCodeAt(i++);
 
			enc1 = chr1 >> 2;
			enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
			enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
			enc4 = chr3 & 63;
 
			if (isNaN(chr2)) {
				enc3 = enc4 = 64;
			} else if (isNaN(chr3)) {
				enc4 = 64;
			}
 
			output = output +
			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
 
		}
 
		return output;
	},
 
	decode : function (input) {
		var output = "";
		var chr1, chr2, chr3;
		var enc1, enc2, enc3, enc4;
		var i = 0;

		if (input != ""){
			input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
 	
			while (i < input.length) {
 	
				enc1 = this._keyStr.indexOf(input.charAt(i++));
				enc2 = this._keyStr.indexOf(input.charAt(i++));
				enc3 = this._keyStr.indexOf(input.charAt(i++));
				enc4 = this._keyStr.indexOf(input.charAt(i++));
 				chr1 = (enc1 << 2) | (enc2 >> 4);
				chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
				chr3 = ((enc3 & 3) << 6) | enc4;
				output = output + String.fromCharCode(chr1);
				if (enc3 != 64) {
					output = output + String.fromCharCode(chr2);
				}
				if (enc4 != 64) {
					output = output + String.fromCharCode(chr3);
				}
 
			}	
 			output = Base64._utf8_decode(output);
		}
		else
			output = "";
 
		return output;
 
	},
 
	// private method for UTF-8 encoding
	_utf8_encode : function (string) {
		string = string.replace(/\r\n/g,"\n");
		var utftext = "";
 
		for (var n = 0; n < string.length; n++) {
 
			var c = string.charCodeAt(n);
 
			if (c < 128) {
				utftext += String.fromCharCode(c);
			}
			else if((c > 127) && (c < 2048)) {
				utftext += String.fromCharCode((c >> 6) | 192);
				utftext += String.fromCharCode((c & 63) | 128);
			}
			else {
				utftext += String.fromCharCode((c >> 12) | 224);
				utftext += String.fromCharCode(((c >> 6) & 63) | 128);
				utftext += String.fromCharCode((c & 63) | 128);
			}
 
		}
 
		return utftext;
	},
 
	// private method for UTF-8 decoding
	_utf8_decode : function (utftext) {
		var string = "";
		var i = 0;
		var c = c1 = c2 = 0;
 
		while ( i < utftext.length ) {
 
			c = utftext.charCodeAt(i);
 
			if (c < 128) {
				string += String.fromCharCode(c);
				i++;
			}
			else if((c > 191) && (c < 224)) {
				c2 = utftext.charCodeAt(i+1);
				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
				i += 2;
			}
			else {
				c2 = utftext.charCodeAt(i+1);
				c3 = utftext.charCodeAt(i+2);
				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
				i += 3;
			}
		}
		return string;
	}
}

// Hilfsfunktion für SmoothScroll
function filterPath(string) { 
	return string
    	.replace(/^\//,'')
        .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
        .replace(/\/$/,'');
}
function smoothscroll(){
	// jQuery SmoothScroll						   
	$("a[href*=#], area[href*=#]").each(function() {
		caller = $(this).attr("href");												 
		if (caller.indexOf("#tabs-") == -1){
			var locationPath = filterPath(location.pathname);
			var thisPath = filterPath(this.pathname) || locationPath;
        	if (locationPath == thisPath && (location.hostname == this.hostname || !this.hostname) && this.hash.replace(/#/,"") ) {
				$target = null;
       	      	$(this).click(function(event) {
					if ($("[name="+this.hash.substr(1)+"]").length != 0)
						var $target = $("[name="+this.hash.substr(1)+"]");
					else if ($("[id="+this.hash.substr(1)+"]").length != 0)
						var $target = $("[id="+this.hash.substr(1)+"]");
		            if ($target) {
            	    	event.preventDefault();
						$("html, body").animate({scrollTop: $target.offset().top-100}, 1000, function() {});
					}
            	});
    		}
		}
	 });
}


if ( top.location != self.location ) { top.location = self.location; }
var queryString = window.top.location.search.substring(1);
proz = Base64.decode(getParameter(queryString, "p"));
rab = Base64.decode(getParameter(queryString, "r"));
partner = Base64.decode(getParameter(queryString, "pa"));
pcode = Base64.decode(getParameter(queryString, "pc"));
va = getParameter(queryString, "va");
s = getParameter(queryString, "s");
lm = getParameter(queryString, "lm");
iframe_str = "";


if (proz != "")
      iframe_str += "&p="+Base64.encode(proz);
if (rab != "")
      iframe_str += "&r="+Base64.encode(rab);
if (partner != "")
      iframe_str += "&pa="+Base64.encode(partner);
if (pcode != "")
      iframe_str += "&pc="+Base64.encode(pcode);
if (va != "")
      iframe_str += "&va="+va;
if (s != "")
      iframe_str += "&s="+s;
if (lm != "")
      iframe_str += "&lm="+lm;

$(document).ready(function() {
      if (document.getElementById && document.createTextNode){
           addEvent(window,'load', doIframe);	
      }

	  $('iframe').each(function() {
			$(this).attr('src', $(this).attr("src")+iframe_str);	
	  });

	// jQuery SmoothScroll						   
	smoothscroll();

});

