

var THOMASCOOK = function() { return {wizard: {}} } ();
THOMASCOOK.wizard.Calendar = new function() {

  this.Selected_Month;
  this.Selected_Year;
  
  this.HeuteTag;
	this.HeuteMonat;
	this.HeuteJahr;
	
	this.dt = new Date(2000, 1, 1); //new Date(); - start from today
  this.TagVon   = this.dt.getDate();
  this.MonatVon = this.dt.getMonth()+1;
  this.JahrVon  = this.dt.getFullYear();

  this.TagBis   = 21;
  this.MonatBis = 5;
  this.JahrBis  = 2050;
  
  this.Days_in_Month = new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
  
  this.dateValue;
  this.inputId;
  this.buttonId;
  
  this.calendarContainerId = "THOMASCOOKCalendarContainer";

  this.OpenCalendar = function(inputId, buttonId)
  {
    this.inputId = inputId;
    this.buttonId = buttonId;
    
    //close another calendar in case it's open
    if (document.getElementById(this.calendarContainerId))
    {
      document.getElementById(this.calendarContainerId).parentNode.style.zIndex = 0;
      document.getElementById(this.calendarContainerId).parentNode.removeChild(
        document.getElementById(this.calendarContainerId));
    }
    
    //create calendar container
    var buttonContainer = document.getElementById(buttonId).parentNode;    
    buttonContainer.style.zIndex = 100; //to make button container div top
    
    var containerDiv = document.createElement("div");
    containerDiv.id = this.calendarContainerId;
    containerDiv.style.position = "absolute";
    containerDiv.style.zIndex = 2;
    containerDiv.style.width = "145px";
    containerDiv.style.height = "162px";
    containerDiv.style.left = "0px";
    containerDiv.style.top = "0px";
    containerDiv.style.top = "0px";
    buttonContainer.appendChild(containerDiv);
       
    this.dateValue=document.getElementById(inputId).value;
    if (!this.dateValue || this.dateValue.length <= 0)
    {
      var now = new Date();
      var day = now.getDate() < 10 ? "0" + now.getDate() : now.getDate();
      var month = (now.getMonth()+1) < 10 ? "0" + (now.getMonth()+1) : (now.getMonth()+1);
      var year = now.getFullYear();
      this.dateValue = day + "." + month + "." + year;
    }

    try
    {
	    this.HeuteTag = this.dateValue.substring(0,2);
	    if (this.HeuteTag.substring(0,1) == "0"){
		    this.HeuteTag = this.HeuteTag.substring(1,2);
	    }
	    this.HeuteMonat = this.dateValue.substring(3,5);
	    this.HeuteJahr  = this.dateValue.substring(6,10);
    }
    catch(e)
    {
	    alert(e)
	    this.HeuteTag   = 1;
	    this.HeuteMonat = 1;
	    this.HeuteJahr  = 2008;
    }
    
    this.HeuteMonat = this.HeuteMonat-1;
    this.MonatVon = this.MonatVon-1;
    this.MonatBis = this.MonatBis-1;
    
    this.Defaults();
  }
  
  this.dfdate = function(d1,m1,y1,sign,d2,m2,y2){var d1 = new Date(y1,m1,d1);var d2 = new Date(y2,m2,d2);d1 = d1.valueOf();d2 = d2.valueOf();switch(sign){case "==":{return (d1==d2)};break;case ">":{return (d1>d2)};break;case "<":{return (d1 < d2)};break;}}

  this.InsertDate = function(dmy) 
  {
	  if(!this.dateValue)return dmy;

	  dmy = dmy.split(".");
	  this.dateValue = (dmy[0]<10?"0"+dmy[0]:dmy[0]) + "." + (dmy[1]<10?"0"+dmy[1]:dmy[1]) + "." + dmy[2];
  	
	  document.getElementById(this.inputId).value = this.dateValue;
	  document.getElementById(this.buttonId).parentNode.removeChild(
	    document.getElementById(this.calendarContainerId));
  }

  this.gmn = function(Year,Month,Day)
  {
  var monthNames = "JANFEBMARAPRMAIJUNJULAUGSEPOKTNOVDEZ";
  var today = new Date(Year,Month,Day);
  var month = monthNames.substring(today.getMonth() * 3, (today.getMonth() + 1) * 3);
  if(month == "MAR")
  {
    month = "M&Auml;R";
  }
  return month + " " + Year;
  }

  this.Make_Calendar = function(Year, Month) 
  {
	  var First_Date = new Date(Year, Month, 1);
	  var Heading = this.gmn(Year, Month, 1);
	  var First_Day_Name = First_Date.getDay();
	  if (First_Day_Name==0){First_Day_Name=7}
	  var Rows = 6;
  	
	  var leftb="<td style='cursor:hand;background-image:url(http://thomascook-3pwizard.pixell.de/img/datepicker/bg_kll.gif);'><img src='http://thomascook-3pwizard.pixell.de/img/datepicker/prev.gif' width=19 height=19 onClick=THOMASCOOK.wizard.Calendar.Skip('-')></td>";
  	
	  var rightb="<td style=cursor:hand; background='http://thomascook-3pwizard.pixell.de/img/datepicker/bg_klr.gif'><img src='http://thomascook-3pwizard.pixell.de/img/datepicker/next.gif' onClick=THOMASCOOK.wizard.Calendar.Skip('+')></td>";
	  var bgc="background='http://thomascook-3pwizard.pixell.de/img/datepicker/bg_c.gif'";
	  var tdbdate="<td height=19 style='cursor:default;font-size:11px;font-family : Arial, Helvetica, sans-serif;color:434A44;font-weight: bold;' background='http://thomascook-3pwizard.pixell.de/img/datepicker/baddate.gif'>";
  	
  	
	  var HTML_String = "<div style='display:none;'>IEhacktoreadfirstscriptcsstag</div>";
	  HTML_String += '<table border=0 cellspacing=0 cellpadding=2 style=\"background-color:black;\"><tr><td valign="top"><table border=0 cellspacing=1 cellpadding=0 FRAME=box style=\"cursor:default;background-color:white;\">';
	  HTML_String += "<tr>"+leftb+"<td width=99 "+bgc +" align=center colspan=5 style='font-size:10px;font-family : Arial, Helvetica, sans-serif;color:#ffffff;letter-spacing : 4px;'>"+Heading+"</td>"+rightb+"</tr>";
	  HTML_String += "<tr align=center><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:115F70;'>M</td><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:115F70;'>D</td><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:115F70;'>M</td>";
	  HTML_String += "<td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:115F70;'>D</td><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:115F70;'>F</td><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:E80000;'>S</td><td width=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:E80000;'>S</td></tr>";
	  HTML_String += "<tr><td colspan=7 bgcolor=000000><img src='http://thomascook-3pwizard.pixell.de//daily/1.gif' width=1 height=1></td></tr>";

	  var Day_Counter = 1;
	  var Loop_Counter = 1;
	  for (var j = 1; j <= Rows; j++) 
	  {
		  HTML_String += "<tr align=center>";
			  for (var i = 1; i < 8; i++) 
			  {
				  if ((Loop_Counter >= First_Day_Name) && (Day_Counter <= this.Days_in_Month[Month])) 
				  {
  					
					  if(this.dfdate(Day_Counter,Month,Year,"<",this.TagVon,this.MonatVon,this.JahrVon)) 
					  {
						  HTML_String += tdbdate + Day_Counter + "</td>";
					  }
					  else if (this.dfdate(Day_Counter,Month,Year,">",this.TagBis,this.MonatBis,this.JahrBis)) 
					  {
						  HTML_String += tdbdate + Day_Counter + "</td>";
					  }
  					
					  else
					  {
						  HTML_String += "<td "+ this.CheckIfHeute(Year+""+(Month*1+1)+""+Day_Counter) +" onclick=THOMASCOOK.wizard.Calendar.InsertDate('"+Day_Counter+"."+(Month+1)+"."+Year+"') height=19 style='cursor:hand;font-size:11px;font-family : Arial, Helvetica, sans-serif;color:434A44;font-weight: bold;'>" + Day_Counter + "</td>";
					  }
					  Day_Counter++; 
				  }
				  else 
				  {
					  HTML_String += "<td height=19 style='font-size:11px;font-family : Arial, Helvetica, sans-serif;color:434A44;font-weight: bold;'>&nbsp;</td>";
				  }
  		

			  Loop_Counter++;
  			
			  }
	  HTML_String += "</tr>";
	  }
  HTML_String += "</table></td></tr></table>";
  HTML_String += this.GetCloseButtonHtml();
  document.getElementById(this.calendarContainerId).innerHTML = 
    "<div style='position:relative;z-index:1;background-color:white;'>" + HTML_String + "</div>";
    
  //IE 'select overlay' hack
  var containerIframe = document.createElement("iframe");
  containerIframe.style.position = "absolute";
  containerIframe.style.zIndex = 0;
  containerIframe.style.width = "145px";
  containerIframe.style.height = "160px";
  containerIframe.style.left = "0px";
  containerIframe.style.top = "0px";
  containerIframe.frameBorder = 0;
  document.getElementById(this.calendarContainerId).appendChild(containerIframe);
  }

  this.Defaults = function() {
  this.Selected_Month = this.HeuteMonat;
  this.Selected_Year = this.HeuteJahr;
  this.Make_Calendar(this.HeuteJahr, this.HeuteMonat);
  }
  
  this.GetCloseButtonHtml = function(){
    var html;
    html = "<div style='position:absolute;bottom:1px;right:1px;'>" + 
      "<img src=" + 
      "'http://thomascook-3pwizard.pixell.de/img/datepicker/btn_close.gif'" + 
      "onclick='" + 
      "document.getElementById(THOMASCOOK.wizard.Calendar.buttonId).parentNode.style.zIndex=0;" +
      "document.getElementById(THOMASCOOK.wizard.Calendar.buttonId).parentNode.removeChild(document.getElementById(THOMASCOOK.wizard.Calendar.calendarContainerId));" + 
      "'" +
      " /></div>";
    return html;
  }

  this.Skip = function(Direction) 
  {
	  if (Direction == '+') 
	  {
		  if (this.Selected_Month == 11) 
		  {
			  this.Selected_Month = 0;
			  this.Selected_Year++;
		  }
		  else 
		  {
			  this.Selected_Month++;
		  }
	  }
	  else 
	  {
		  if (this.Selected_Month == 0) 
		  {
			  this.Selected_Month = 11;
			  this.Selected_Year--;
		  }
		  else 
		  {
			  this.Selected_Month--;
		  }
	  }
  this.Make_Calendar(this.Selected_Year, this.Selected_Month);
  }

  this.CheckIfHeute = function(sdatum)
  {
  var sm=new Date();
  simera=sm.getFullYear()+""+(sm.getMonth()+1)+sm.getDate();
  usersel = this.HeuteJahr +""+ (this.HeuteMonat*1+1) +""+ this.HeuteTag

  if((sdatum==usersel)&&(sdatum==simera)){return "background='http://thomascook-3pwizard.pixell.de/img/datepicker/ringsel.gif'";}
  if(sdatum==usersel){return "background='http://thomascook-3pwizard.pixell.de/img/datepicker/seldate.gif'";}
  if(sdatum==simera){return "background='http://thomascook-3pwizard.pixell.de/img/datepicker/ring.gif'";}
  }

}
document.write("<div style=\"position:relative;padding:0px;margin:0px;border:0px;background-color:white;width:550px;height:300px;\">"
+"<img src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3.jpg' style='position:relative;z-index:0;left:0px;top:0px;border:0px;width:550px;height:100px;' /><div style='position:absolute;left:1px;top:75px;overflow:hidden;z-index:1;border:0px;padding:0px;margin:0px;'><div style='float:left;border:0px;padding:0px;margin:0px;'><a href='#' onclick=\"document.getElementById('THOMASCOOKSubWizardContainer66').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer65').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer68').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer69').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardContainer66').style.display = 'block';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_off').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_on').style.display = 'inline';return false;\" ><img id='THOMASCOOKSubWizardTabImage_70_66_on' style='border:0px;margin:0px;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_lastminute_on.jpg' /><img id='THOMASCOOKSubWizardTabImage_70_66_off' style='border:0px;margin:0px;display:none;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_lastminute_off.jpg' /></a></div><div style='float:left;border:0px;padding:0px;margin:0px;'><a href='#' onclick=\"document.getElementById('THOMASCOOKSubWizardContainer66').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer65').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer68').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer69').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardContainer65').style.display = 'block';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_off').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_on').style.display = 'inline';return false;\" ><img id='THOMASCOOKSubWizardTabImage_70_65_on' style='border:0px;margin:0px;display:none;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_pauschal_on.jpg' /><img id='THOMASCOOKSubWizardTabImage_70_65_off' style='border:0px;margin:0px;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_pauschal_off.jpg' /></a></div><div style='float:left;border:0px;padding:0px;margin:0px;'><a href='#' onclick=\"document.getElementById('THOMASCOOKSubWizardContainer66').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer65').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer68').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer69').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardContainer68').style.display = 'block';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_off').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_on').style.display = 'inline';return false;\" ><img id='THOMASCOOKSubWizardTabImage_70_68_on' style='border:0px;margin:0px;display:none;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_hotel_on.jpg' /><img id='THOMASCOOKSubWizardTabImage_70_68_off' style='border:0px;margin:0px;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_hotel_off.jpg' /></a></div><div style='float:left;border:0px;padding:0px;margin:0px;'><a href='#' onclick=\"document.getElementById('THOMASCOOKSubWizardContainer66').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer65').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer68').style.display = 'none';document.getElementById('THOMASCOOKSubWizardContainer69').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_66_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_65_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_68_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_on').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_off').style.display = 'inline';document.getElementById('THOMASCOOKSubWizardContainer69').style.display = 'block';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_off').style.display = 'none';document.getElementById('THOMASCOOKSubWizardTabImage_70_69_on').style.display = 'inline';return false;\" ><img id='THOMASCOOKSubWizardTabImage_70_69_on' style='border:0px;margin:0px;display:none;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_fewo_on.jpg' /><img id='THOMASCOOKSubWizardTabImage_70_69_off' style='border:0px;margin:0px;' src='http://thomascook-3pwizard.pixell.de/data/containerbgimages/3_fewo_off.jpg' /></a></div></div>"
+"<div id='THOMASCOOKSubWizardContainer66' style='position:absolute;z-index:10;left:0px;top:100px;width:550px;height:200px;border:0px;padding:0px;margin:0px;'></div><div id='THOMASCOOKSubWizardContainer65' style='position:absolute;display:none;z-index:12;left:0px;top:100px;width:550px;height:200px;border:0px;padding:0px;margin:0px;'></div><div id='THOMASCOOKSubWizardContainer68' style='position:absolute;display:none;z-index:14;left:0px;top:100px;width:550px;height:200px;border:0px;padding:0px;margin:0px;'></div><div id='THOMASCOOKSubWizardContainer69' style='position:absolute;display:none;z-index:16;left:0px;top:100px;width:550px;height:200px;border:0px;padding:0px;margin:0px;'></div>"
+"</div>"
);document.getElementById('THOMASCOOKSubWizardContainer66').innerHTML = "<div style=\"position:relative;width:550px;height:200px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/defaultbg550x200.jpg);background-repeat:no-repeat;background-position:bottom left;\">"
+"<form  action='http://www.thomascook.de/index.php' method='get' style='display:inline;' target='_blank' onsubmit='if (!document.getElementById(\"frmTrTWizard_66_ziel\") || document.getElementById(\"frmTrTWizard_66_ziel\").selectedIndex <= 0){document.getElementById(\"frmTrTWizard_66_detail\").value = \"zielgebiet\";} else {document.getElementById(\"frmTrTWizard_66_detail\").value = document.getElementById(\"frmTrTWizard_66_detailDefault\").value;if (document.getElementById(\"frmTrTWizard_66_detail\").value == \"hotel\"){document.getElementById(\"frmTrTWizard_66_ziel\").name = \"topRegion\";} else {document.getElementById(\"frmTrTWizard_66_ziel\").name = \"ziel\";}}var form = this;var queryString = \"\"; var amp = \"\"; var zielName = \"\"; var zielId = \"\"; var startDate = \"\"; var endDate = \"\"; for(i=0; i<form.elements.length; i++){     if (form.elements[i].name == \"\") continue;    if ((form.elements[i].type == \"radio\" || form.elements[i].type == \"checkbox\") &&        !form.elements[i].checked) continue;    queryString += amp+form.elements[i].name+\"=\"+encodeURIComponent(form.elements[i].value);     amp = \"&\";    if (form.elements[i].name == \"ziel\" && form.elements[i].selectedIndex > 0){       zielName=form.elements[i].options[form.elements[i].selectedIndex].text;       zielId=form.elements[i].options[form.elements[i].selectedIndex].value;    }    if (form.elements[i].name == \"von\" && form.elements[i].value != \"\"){       startDate=form.elements[i].value;    }    if (form.elements[i].name == \"bis\" && form.elements[i].value != \"\"){       endDate=form.elements[i].value;    }}var targetUrl = \"http://www.thomascook.de/index.php\";targetUrl += \"?\" + queryString;for(i=1; i<=1; i++){targetUrl=encodeURIComponent(targetUrl);}window.open(\"http://ad.zanox.com/ppc/?14221186C101661126&ULP=http://asn.advolution.de/00001f795F0002693/\" + targetUrl, \"_blank\");return false;'>"
+"<input id='frmTrTWizard_66_detail' type='hidden' name='detail' value='zielgebiet' /><input id='frmTrTWizard_66_detailDefault' type='hidden' value='zielgebiet' />"
+""
+""
+"<input type=\"hidden\" name=\"KID\" value=\"620020\" /><input type=\"hidden\" name=\"engine\" value=\"lastminute\" /><input type=\"hidden\" name=\"formular\" value=\"4\" /><input type=\"hidden\" name=\"showresult\" value=\"1\" /><input type=\"hidden\" name=\"id\" value=\"18\" /><input type=\"hidden\" name=\"region\" value=\"-1\" />"
+"<div style=\"position:absolute;width:405px;height:20px;left:10px;top:10px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:18px;          font-weight:normal;          color:#18B6C2;          line-height:27px;        \">Sommer, Sonne und Meer...</div>"
+"<div style=\"position:absolute;width:120px;height:20px;left:10px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wohin?</div>"
+"<select style=\"position:absolute;width:150px;height:20px;left:10px;top:110px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_ziel' name='ziel'><option value='' selected=\"selected\" >beliebig</option><option value='10010'>Aegypten</option><option value='10011'>Afrika</option><option value='10017'>Asien</option><option value='10018'>Australien</option><option value='10000'>Balearen</option><option value='10029'>Deutschland</option><option value='10013'>Dom. Republik</option><option value='10020'>Dubai, Arabische Halbinsel</option><option value='10035'>Fly & Drive</option><option value='10021'>Frankreich</option><option value='10032'>Gl&uuml;ckshotels</option><option value='10006'>Griechenland</option><option value='10005'>Griechische Inseln</option><option value='10036'>Indischer Ozean</option><option value='10007'>Italien, Malta</option><option value='10024'>Kanada</option><option value='10001'>Kanaren</option><option value='10014'>Karibik</option><option value='10034'>Kreuzfahrten</option><option value='10030'>Kroatien, Bulgarien, Osteuropa</option><option value='10012'>Kuba</option><option value='10000'>Mallorca, Ibiza, Menorca</option><option value='10016'>Mexiko</option><option value='10037'>Mittelamerika</option><option value='10028'>Mitteleuropa</option><option value='10026'>Naher Osten</option><option value='10022'>Nordeuropa</option><option value='10002'>Portugal</option><option value='10033'>Rundreisen</option><option value='10003'>Spanisches Festland</option><option value='10023'>S&uuml;damerika</option><option value='10025'>S&uuml;dsee</option><option value='10008'>Tunesien, Marokko</option><option value='10004'>T&uuml;rkei</option><option value='10015'>USA</option><option value='10019'>Zypern</option></select>"
+"<select style=\"position:absolute;width:150px;height:18px;left:10px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_abflughafen' name='abflughafen'><option value='' selected=\"selected\" >alle Abflugh&auml;fen</option><option value='0'>Altenburg-Nobitz</option><option value='1'>Amsterdam Schiphol</option><option value='2'>Augsburg</option><option value='3'>Basel-Mulhouse</option><option value='4'>Berlin-Sch&ouml;nefeld</option><option value='5'>Berlin-Tegel</option><option value='6'>Berlin-Tempelhof</option><option value='7'>Bern-Belp</option><option value='8'>Bremen</option><option value='9'>Br&uuml;ssel</option><option value='10'>Dortmund</option><option value='11'>Dresden</option><option value='12'>D&uuml;sseldorf</option><option value='13'>Enschede Twente</option><option value='14'>Erfurt</option><option value='15'>Frankfurt</option><option value='16'>Frankfurt-Hahn</option><option value='17'>Friedrichshafen</option><option value='18'>Genf</option><option value='19'>Graz</option><option value='20'>Hamburg</option><option value='21'>Hannover</option><option value='22'>Hof-Plauen</option><option value='23'>Innsbruck</option><option value='24'>Karlsruhe</option><option value='25'>Kassel</option><option value='26'>Kiel</option><option value='27'>Klagenfurt</option><option value='28'>K&ouml;ln-Bonn</option><option value='29'>Leipzig-Halle</option><option value='30'>Linz</option><option value='31'>L&uuml;beck</option><option value='32'>L&uuml;ttich</option><option value='33'>Luxemburg</option><option value='34'>Maastricht</option><option value='35'>M&ouml;nchengladbach</option><option value='36'>M&uuml;nchen</option><option value='37'>M&uuml;nster-Osnabr&uuml;ck</option><option value='38'>N&uuml;rnberg</option><option value='39'>Paderborn</option><option value='40'>Rostock</option><option value='41'>Saarbr&uuml;cken</option><option value='42'>Salzburg</option><option value='43'>Schwerin</option><option value='44'>Strasbourg</option><option value='45'>Stuttgart</option><option value='46'>Wien</option><option value='47'>Z&uuml;rich</option><option value='48'>Zweibr&uuml;cken</option><option value='5000'>&lt;Nord&gt;</option><option value='5001'>&lt;S&uuml;d&gt;</option><option value='5002'>&lt;West&gt;</option><option value='5003'>&lt;Ost&gt;</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:205px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wann?</div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:75px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Fr&uuml;hester Hinflug</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:90px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_66_termin' type='text' name='termin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:90px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_66_terminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_66_termin', 'frmTrTWizard_66_terminDatePickerButton');return false;\" /></div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:115px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Sp&auml;tester R&uuml;ckflug</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_66_ruecktermin' type='text' name='ruecktermin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:130px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_66_rueckterminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_66_ruecktermin', 'frmTrTWizard_66_rueckterminDatePickerButton');return false;\" /></div>"
+"<select style=\"position:absolute;width:130px;height:18px;left:205px;top:160px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_dauer' name='dauer'><option value='-1'>Reisedauer</option><option value='9'>1 - 4 Tage</option><option value='10'>5 - 8 Tage</option><option value='6_7'>1 Woche</option><option value='7'>9 - 12 Tage</option><option value='3'>13 - 15 Tage</option><option value='6_14'>2 Wochen</option><option value='12'>16 - 22 Tage</option><option value='6_21'>3 Wochen</option><option value='13'>&gt; 22 Tage</option></select>"
+"<div style=\"position:absolute;width:120px;height:20px;left:390px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wer?</div>"
+"<select style=\"position:absolute;width:125px;height:18px;left:390px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_erwachsene' name='erwachsene'><option value='25'>1 Erwachsener</option><option value='25;25'>2 Erwachsene</option><option value='25;25;25'>3 Erwachsene</option><option value='25;25;25;25'>4 Erwachsene</option><option value='25;25;25;25;25'>5 Erwachsene</option><option value='25;25;25;25;25;25'>6 Erwachsene</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_alter1' name='alter1'><option value='-1'>Kind 1</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:455px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_alter2' name='alter2'><option value='-1'>Kind 2</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_66_alter3' name='alter3'><option value='-1'>Kind 3</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:455px;top:130px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:9px;          font-weight:normal;          color:#5A5A5A;        \">(Alter bei Reiseantritt)</div>"
+"<input style=\"position:absolute;width:111px;height:23px;left:390px;top:160px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/btn_submit.jpg);          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:12px;          font-weight:bold;          color:#5A5A5A;          border:0px;          background-color:transparent;          background-repeat:no-repeat;          background-position:left center;          text-align:right;          cursor:pointer;        \" value='' type='submit' />"
+"</form>"
+"</div>"
;document.getElementById('THOMASCOOKSubWizardContainer65').innerHTML = "<div style=\"position:relative;width:550px;height:200px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/defaultbg550x200.jpg);background-repeat:no-repeat;background-position:bottom left;\">"
+"<form  action='http://www.thomascook.de/index.php' method='get' style='display:inline;' target='_blank' onsubmit='if (!document.getElementById(\"frmTrTWizard_65_ziel\") || document.getElementById(\"frmTrTWizard_65_ziel\").selectedIndex <= 0){document.getElementById(\"frmTrTWizard_65_detail\").value = \"zielgebiet\";} else {document.getElementById(\"frmTrTWizard_65_detail\").value = document.getElementById(\"frmTrTWizard_65_detailDefault\").value;if (document.getElementById(\"frmTrTWizard_65_detail\").value == \"hotel\"){document.getElementById(\"frmTrTWizard_65_ziel\").name = \"topRegion\";} else {document.getElementById(\"frmTrTWizard_65_ziel\").name = \"ziel\";}}var form = this;var queryString = \"\"; var amp = \"\"; var zielName = \"\"; var zielId = \"\"; var startDate = \"\"; var endDate = \"\"; for(i=0; i<form.elements.length; i++){     if (form.elements[i].name == \"\") continue;    if ((form.elements[i].type == \"radio\" || form.elements[i].type == \"checkbox\") &&        !form.elements[i].checked) continue;    queryString += amp+form.elements[i].name+\"=\"+encodeURIComponent(form.elements[i].value);     amp = \"&\";    if (form.elements[i].name == \"ziel\" && form.elements[i].selectedIndex > 0){       zielName=form.elements[i].options[form.elements[i].selectedIndex].text;       zielId=form.elements[i].options[form.elements[i].selectedIndex].value;    }    if (form.elements[i].name == \"von\" && form.elements[i].value != \"\"){       startDate=form.elements[i].value;    }    if (form.elements[i].name == \"bis\" && form.elements[i].value != \"\"){       endDate=form.elements[i].value;    }}var targetUrl = \"http://www.thomascook.de/index.php\";targetUrl += \"?\" + queryString;for(i=1; i<=1; i++){targetUrl=encodeURIComponent(targetUrl);}window.open(\"http://ad.zanox.com/ppc/?14221186C101661126&ULP=http://asn.advolution.de/00001f795F0002693/\" + targetUrl, \"_blank\");return false;'>"
+"<input id='frmTrTWizard_65_detail' type='hidden' name='detail' value='zielgebiet' /><input id='frmTrTWizard_65_detailDefault' type='hidden' value='zielgebiet' />"
+""
+""
+"<input type=\"hidden\" name=\"KID\" value=\"620020\" /><input type=\"hidden\" name=\"engine\" value=\"lastminute\" /><input type=\"hidden\" name=\"formular\" value=\"4\" /><input type=\"hidden\" name=\"showresult\" value=\"1\" /><input type=\"hidden\" name=\"id\" value=\"14\" /><input type=\"hidden\" name=\"region\" value=\"-1\" />"
+"<div style=\"position:absolute;width:430px;height:20px;left:10px;top:10px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:18px;          font-weight:normal;          color:#18B6C2;          line-height:27px;        \">Sommer, Sonne und Meer...</div>"
+"<div style=\"position:absolute;width:120px;height:20px;left:10px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wohin?</div>"
+"<select style=\"position:absolute;width:150px;height:20px;left:10px;top:110px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_ziel' name='ziel'><option value='' selected=\"selected\" >beliebig</option><option value='10010'>Aegypten</option><option value='10011'>Afrika</option><option value='10017'>Asien</option><option value='10018'>Australien</option><option value='10000'>Balearen</option><option value='10029'>Deutschland</option><option value='10013'>Dom. Republik</option><option value='10020'>Dubai, Arabische Halbinsel</option><option value='10035'>Fly & Drive</option><option value='10021'>Frankreich</option><option value='10032'>Gl&uuml;ckshotels</option><option value='10006'>Griechenland</option><option value='10005'>Griechische Inseln</option><option value='10036'>Indischer Ozean</option><option value='10007'>Italien, Malta</option><option value='10024'>Kanada</option><option value='10001'>Kanaren</option><option value='10014'>Karibik</option><option value='10034'>Kreuzfahrten</option><option value='10030'>Kroatien, Bulgarien, Osteuropa</option><option value='10012'>Kuba</option><option value='10000'>Mallorca, Ibiza, Menorca</option><option value='10016'>Mexiko</option><option value='10037'>Mittelamerika</option><option value='10028'>Mitteleuropa</option><option value='10026'>Naher Osten</option><option value='10022'>Nordeuropa</option><option value='10002'>Portugal</option><option value='10033'>Rundreisen</option><option value='10003'>Spanisches Festland</option><option value='10023'>S&uuml;damerika</option><option value='10025'>S&uuml;dsee</option><option value='10008'>Tunesien, Marokko</option><option value='10004'>T&uuml;rkei</option><option value='10015'>USA</option><option value='10019'>Zypern</option></select>"
+"<select style=\"position:absolute;width:150px;height:18px;left:10px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_abflughafen' name='abflughafen'><option value='' selected=\"selected\" >alle Abflugh&auml;fen</option><option value='0'>Altenburg-Nobitz</option><option value='1'>Amsterdam Schiphol</option><option value='2'>Augsburg</option><option value='3'>Basel-Mulhouse</option><option value='4'>Berlin-Sch&ouml;nefeld</option><option value='5'>Berlin-Tegel</option><option value='6'>Berlin-Tempelhof</option><option value='7'>Bern-Belp</option><option value='8'>Bremen</option><option value='9'>Br&uuml;ssel</option><option value='10'>Dortmund</option><option value='11'>Dresden</option><option value='12'>D&uuml;sseldorf</option><option value='13'>Enschede Twente</option><option value='14'>Erfurt</option><option value='15'>Frankfurt</option><option value='16'>Frankfurt-Hahn</option><option value='17'>Friedrichshafen</option><option value='18'>Genf</option><option value='19'>Graz</option><option value='20'>Hamburg</option><option value='21'>Hannover</option><option value='22'>Hof-Plauen</option><option value='23'>Innsbruck</option><option value='24'>Karlsruhe</option><option value='25'>Kassel</option><option value='26'>Kiel</option><option value='27'>Klagenfurt</option><option value='28'>K&ouml;ln-Bonn</option><option value='29'>Leipzig-Halle</option><option value='30'>Linz</option><option value='31'>L&uuml;beck</option><option value='32'>L&uuml;ttich</option><option value='33'>Luxemburg</option><option value='34'>Maastricht</option><option value='35'>M&ouml;nchengladbach</option><option value='36'>M&uuml;nchen</option><option value='37'>M&uuml;nster-Osnabr&uuml;ck</option><option value='38'>N&uuml;rnberg</option><option value='39'>Paderborn</option><option value='40'>Rostock</option><option value='41'>Saarbr&uuml;cken</option><option value='42'>Salzburg</option><option value='43'>Schwerin</option><option value='44'>Strasbourg</option><option value='45'>Stuttgart</option><option value='46'>Wien</option><option value='47'>Z&uuml;rich</option><option value='48'>Zweibr&uuml;cken</option><option value='5000'>&lt;Nord&gt;</option><option value='5001'>&lt;S&uuml;d&gt;</option><option value='5002'>&lt;West&gt;</option><option value='5003'>&lt;Ost&gt;</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:205px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wann?</div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:75px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Fr&uuml;hester Hinflug</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:90px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_65_termin' type='text' name='termin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:90px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_65_terminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_65_termin', 'frmTrTWizard_65_terminDatePickerButton');return false;\" /></div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:115px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Sp&auml;tester R&uuml;ckflug</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_65_ruecktermin' type='text' name='ruecktermin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:130px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_65_rueckterminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_65_ruecktermin', 'frmTrTWizard_65_rueckterminDatePickerButton');return false;\" /></div>"
+"<select style=\"position:absolute;width:130px;height:18px;left:205px;top:160px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_dauer' name='dauer'><option value='-1'>Reisedauer</option><option value='9'>1 - 4 Tage</option><option value='10'>5 - 8 Tage</option><option value='6_7'>1 Woche</option><option value='7'>9 - 12 Tage</option><option value='3'>13 - 15 Tage</option><option value='6_14'>2 Wochen</option><option value='12'>16 - 22 Tage</option><option value='6_21'>3 Wochen</option><option value='13'>&gt; 22 Tage</option></select>"
+"<div style=\"position:absolute;width:120px;height:20px;left:390px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wer?</div>"
+"<select style=\"position:absolute;width:125px;height:18px;left:390px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_erwachsene' name='erwachsene'><option value='25'>1 Erwachsener</option><option value='25;25'>2 Erwachsene</option><option value='25;25;25'>3 Erwachsene</option><option value='25;25;25;25'>4 Erwachsene</option><option value='25;25;25;25;25'>5 Erwachsene</option><option value='25;25;25;25;25;25'>6 Erwachsene</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_alter1' name='alter1'><option value='-1'>Kind 1</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:455px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_alter2' name='alter2'><option value='-1'>Kind 2</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_65_alter3' name='alter3'><option value='-1'>Kind 3</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:455px;top:130px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:9px;          font-weight:normal;          color:#5A5A5A;        \">(Alter bei Reiseantritt)</div>"
+"<input style=\"position:absolute;width:111px;height:23px;left:390px;top:160px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/btn_submit.jpg);          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:12px;          font-weight:bold;          color:#5A5A5A;          border:0px;          background-color:transparent;          background-repeat:no-repeat;          background-position:left center;          text-align:right;          cursor:pointer;        \" value='' type='submit' />"
+"</form>"
+"</div>"
;document.getElementById('THOMASCOOKSubWizardContainer68').innerHTML = "<div style=\"position:relative;width:550px;height:200px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/defaultbg550x200.jpg);background-repeat:no-repeat;background-position:bottom left;\">"
+"<form  action='http://www.thomascook.de/index.php' method='get' style='display:inline;' target='_blank' onsubmit='if (!document.getElementById(\"frmTrTWizard_68_ziel\") || document.getElementById(\"frmTrTWizard_68_ziel\").selectedIndex <= 0){document.getElementById(\"frmTrTWizard_68_detail\").value = \"zielgebiet\";} else {document.getElementById(\"frmTrTWizard_68_detail\").value = document.getElementById(\"frmTrTWizard_68_detailDefault\").value;if (document.getElementById(\"frmTrTWizard_68_detail\").value == \"hotel\"){document.getElementById(\"frmTrTWizard_68_ziel\").name = \"topRegion\";} else {document.getElementById(\"frmTrTWizard_68_ziel\").name = \"ziel\";}}var form = this;var queryString = \"\"; var amp = \"\"; var zielName = \"\"; var zielId = \"\"; var startDate = \"\"; var endDate = \"\"; for(i=0; i<form.elements.length; i++){     if (form.elements[i].name == \"\") continue;    if ((form.elements[i].type == \"radio\" || form.elements[i].type == \"checkbox\") &&        !form.elements[i].checked) continue;    queryString += amp+form.elements[i].name+\"=\"+encodeURIComponent(form.elements[i].value);     amp = \"&\";    if (form.elements[i].name == \"ziel\" && form.elements[i].selectedIndex > 0){       zielName=form.elements[i].options[form.elements[i].selectedIndex].text;       zielId=form.elements[i].options[form.elements[i].selectedIndex].value;    }    if (form.elements[i].name == \"von\" && form.elements[i].value != \"\"){       startDate=form.elements[i].value;    }    if (form.elements[i].name == \"bis\" && form.elements[i].value != \"\"){       endDate=form.elements[i].value;    }}var targetUrl = \"http://www.thomascook.de/index.php\";targetUrl += \"?\" + queryString;for(i=1; i<=1; i++){targetUrl=encodeURIComponent(targetUrl);}window.open(\"http://ad.zanox.com/ppc/?14221186C101661126&ULP=http://asn.advolution.de/00001f795F0002693/\" + targetUrl, \"_blank\");return false;'>"
+"<input id='frmTrTWizard_68_detail' type='hidden' name='detail' value='zielgebiet' /><input id='frmTrTWizard_68_detailDefault' type='hidden' value='zielgebiet' />"
+""
+""
+"<input type=\"hidden\" name=\"KID\" value=\"620020\" /><input type=\"hidden\" name=\"engine\" value=\"erde\" /><input type=\"hidden\" name=\"formular\" value=\"4\" /><input type=\"hidden\" name=\"showresult\" value=\"1\" /><input type=\"hidden\" name=\"id\" value=\"209\" /><input type=\"hidden\" name=\"region\" value=\"-1\" />"
+"<div style=\"position:absolute;width:425px;height:20px;left:10px;top:10px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:18px;          font-weight:normal;          color:#18B6C2;          line-height:27px;        \">Die sch&ouml;nsten Hotels f&uuml;r jedes Budget:</div>"
+"<div style=\"position:absolute;width:120px;height:20px;left:10px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wohin?</div>"
+"<select style=\"position:absolute;width:150px;height:20px;left:10px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_ziel' name='ziel'><option value='' selected=\"selected\" >beliebig</option><option value='30029'>Aegypten</option><option value='30035'>Afrika</option><option value='30037'>Asien</option><option value='30018'>Australien</option><option value='30006'>Benelux</option><option value='30000'>Deutschland Nord</option><option value='30001'>Deutschland Ost</option><option value='30040'>Deutschland Specials</option><option value='30002'>Deutschland S&uuml;d</option><option value='30003'>Deutschland West</option><option value='30020'>Dubai, Arabische Halbinsel</option><option value='30009'>Frankreich</option><option value='30043'>Gl&uuml;ckshotels</option><option value='30038'>Griechenland</option><option value='30023'>Gro&szlig;britannien / Irland</option><option value='30033'>Indischer Ozean</option><option value='30031'>Island</option><option value='30008'>Italien</option><option value='30027'>Karibik</option><option value='30034'>Kreuzfahrten</option><option value='30014'>Kroatien</option><option value='30019'>Liechtenstein</option><option value='30024'>Malta</option><option value='30039'>Mittelamerika</option><option value='30045'>Naher Osten</option><option value='30028'>Neuseeland</option><option value='30004'>Oesterreich</option><option value='30025'>Osteuropa</option><option value='30012'>Polen</option><option value='30022'>Portugal</option><option value='30044'>Rundreisen</option><option value='30005'>Schweiz</option><option value='30007'>Skandinavien</option><option value='30011'>Slowakei / Tschechien</option><option value='30015'>Slowenien</option><option value='30017'>Sonstige</option><option value='30010'>Spanien</option><option value='30032'>S&uuml;dafrika</option><option value='30036'>S&uuml;damerika</option><option value='30030'>S&uuml;dsee</option><option value='30021'>T&uuml;rkei</option><option value='30016'>USA / Kanada</option><option value='30013'>Ungarn</option><option value='30026'>Zypern</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:205px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wann?</div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:75px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Fr&uuml;heste Anreise</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:90px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_68_termin' type='text' name='termin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:90px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_68_terminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_68_termin', 'frmTrTWizard_68_terminDatePickerButton');return false;\" /></div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:115px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Sp&auml;teste Abreise</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_68_ruecktermin' type='text' name='ruecktermin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:130px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_68_rueckterminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_68_ruecktermin', 'frmTrTWizard_68_rueckterminDatePickerButton');return false;\" /></div>"
+"<select style=\"position:absolute;width:130px;height:18px;left:205px;top:160px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_dauer' name='dauer'><option value='-1'>beliebig</option><option value='6_1'>1 Tag</option><option value='6_2'>2 Tage</option><option value='6_3'>3 Tage</option><option value='6_4'>4 Tage</option><option value='6_5'>5 Tage</option><option value='6_6'>6 Tage</option><option value='6_7'>7 Tage</option><option value='6_8'>8 Tage</option><option value='6_9'>9 Tage</option><option value='6_10'>10 Tage</option><option value='6_11'>11 Tage</option><option value='6_12'>12 Tage</option><option value='6_13'>13 Tage</option><option value='6_14'>14 Tage</option><option value='6_15'>15 Tage</option><option value='6_16'>16 Tage</option><option value='6_17'>17 Tage</option><option value='6_18'>18 Tage</option><option value='6_19'>19 Tage</option><option value='6_20'>20 Tage</option><option value='6_21'>21 Tage</option><option value='13'>&gt;22 Tage</option></select>"
+"<div style=\"position:absolute;width:120px;height:20px;left:390px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wer?</div>"
+"<select style=\"position:absolute;width:125px;height:18px;left:390px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_erwachsene' name='erwachsene'><option value='25'>1 Erwachsener</option><option value='25;25'>2 Erwachsene</option><option value='25;25;25'>3 Erwachsene</option><option value='25;25;25;25'>4 Erwachsene</option><option value='25;25;25;25;25'>5 Erwachsene</option><option value='25;25;25;25;25;25'>6 Erwachsene</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_alter1' name='alter1'><option value='-1'>Kind 1</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:455px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_alter2' name='alter2'><option value='-1'>Kind 2</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_68_alter3' name='alter3'><option value='-1'>Kind 3</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:455px;top:130px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:9px;          font-weight:normal;          color:#5A5A5A;        \">(Alter bei Reiseantritt)</div>"
+"<input style=\"position:absolute;width:111px;height:23px;left:390px;top:160px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/btn_submit.jpg);          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:12px;          font-weight:bold;          color:#5A5A5A;          border:0px;          background-color:transparent;          background-repeat:no-repeat;          background-position:left center;          text-align:right;          cursor:pointer;        \" value='' type='submit' />"
+"</form>"
+"</div>"
;document.getElementById('THOMASCOOKSubWizardContainer69').innerHTML = "<div style=\"position:relative;width:550px;height:200px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/defaultbg550x200.jpg);background-repeat:no-repeat;background-position:bottom left;\">"
+"<form  action='http://www.thomascook.de/index.php' method='get' style='display:inline;' target='_blank' onsubmit='var form = this;var queryString = \"\"; var amp = \"\"; var zielName = \"\"; var zielId = \"\"; var startDate = \"\"; var endDate = \"\"; for(i=0; i<form.elements.length; i++){     if (form.elements[i].name == \"\") continue;    if ((form.elements[i].type == \"radio\" || form.elements[i].type == \"checkbox\") &&        !form.elements[i].checked) continue;    queryString += amp+form.elements[i].name+\"=\"+encodeURIComponent(form.elements[i].value);     amp = \"&\";    if (form.elements[i].name == \"ziel\" && form.elements[i].selectedIndex > 0){       zielName=form.elements[i].options[form.elements[i].selectedIndex].text;       zielId=form.elements[i].options[form.elements[i].selectedIndex].value;    }    if (form.elements[i].name == \"von\" && form.elements[i].value != \"\"){       startDate=form.elements[i].value;    }    if (form.elements[i].name == \"bis\" && form.elements[i].value != \"\"){       endDate=form.elements[i].value;    }}var targetUrl = \"http://www.thomascook.de/index.php\";targetUrl += \"?\" + queryString;for(i=1; i<=1; i++){targetUrl=encodeURIComponent(targetUrl);}window.open(\"http://ad.zanox.com/ppc/?14221186C101661126&ULP=http://asn.advolution.de/00001f795F0002693/\" + targetUrl, \"_blank\");return false;'>"
+"<input id='frmTrTWizard_69_detail' type='hidden' name='detail' value='zielgebiet' />"
+""
+""
+"<input type=\"hidden\" name=\"KID\" value=\"620020\" /><input type=\"hidden\" name=\"engine\" value=\"fewo\" /><input type=\"hidden\" name=\"formular\" value=\"4\" /><input type=\"hidden\" name=\"showresult\" value=\"1\" /><input type=\"hidden\" name=\"id\" value=\"83\" /><input type=\"hidden\" name=\"region\" value=\"-1\" />"
+"<div style=\"position:absolute;width:420px;height:20px;left:10px;top:10px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:18px;          font-weight:normal;          color:#18B6C2;          line-height:27px;        \">Urlaub individuell im Ferienhaus</div>"
+"<div style=\"position:absolute;width:120px;height:20px;left:10px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wohin?</div>"
+"<select style=\"position:absolute;width:150px;height:20px;left:10px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_ziel' name='ziel'><option value='' selected=\"selected\" >alle Reiseziele</option><option value='10034'>Andorra</option><option value='10000'>Belgien</option><option value='10001'>Bulgarien</option><option value='10003'>Deutschland</option><option value='10002'>D&auml;nemark</option><option value='10004'>Finnland</option><option value='10005'>Frankreich</option><option value='10006'>Griechenland</option><option value='10007'>Gro&szlig;britannien</option><option value='10008'>Irland</option><option value='10009'>Island</option><option value='10010'>Italien</option><option value='10012'>Kroatien</option><option value='10014'>Luxemburg</option><option value='10036'>Malta / Gozo</option><option value='10015'>Niederlande</option><option value='10017'>Norwegen</option><option value='10018'>Oesterreich</option><option value='10019'>Polen</option><option value='10020'>Portugal</option><option value='10021'>Schweden</option><option value='10022'>Schweiz</option><option value='10024'>Slowakei</option><option value='10031'>Spanien Balearen</option><option value='10030'>Spanien Festland / Andorra</option><option value='10032'>Spanien Kanaren</option><option value='10026'>Tschechien</option><option value='10027'>T&uuml;rkei</option><option value='10029'>USA</option><option value='10028'>Ungarn</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:205px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wann?</div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:75px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Fr&uuml;heste Anreise</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:90px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_69_termin' type='text' name='termin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:90px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_69_terminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_69_termin', 'frmTrTWizard_69_terminDatePickerButton');return false;\" /></div>"
+"<div style=\"position:absolute;width:140px;height:20px;left:205px;top:115px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          font-weight:normal;          color:#5A5A5A;        \">Sp&auml;teste Abreise</div>"
+"<input style=\"position:absolute;width:112px;height:18px;left:205px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;          margin:0px;          padding:0px;        \" id='frmTrTWizard_69_ruecktermin' type='text' name='ruecktermin' value='' /><div style=\"position:absolute;width:18px;height:18px;left:321px;top:130px;background-image:url(http://thomascook-3pwizard.pixell.de/img/builder/input_date.gif);background-repeat:no-repeat;background-position:left center;\"><img id='frmTrTWizard_69_rueckterminDatePickerButton' style=\"width:18px;height:18px;\" src='http://thomascook-3pwizard.pixell.de/img/x.gif' onclick=\"javascript:THOMASCOOK.wizard.Calendar.OpenCalendar('frmTrTWizard_69_ruecktermin', 'frmTrTWizard_69_rueckterminDatePickerButton');return false;\" /></div>"
+"<select style=\"position:absolute;width:130px;height:18px;left:205px;top:160px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_dauer' name='dauer'><option value='-1'>Reisedauer</option><option value='9'>1 - 4 Tage</option><option value='10'>5 - 8 Tage</option><option value='6_7'>1 Woche</option><option value='7'>9 - 12 Tage</option><option value='3'>13 - 15 Tage</option><option value='6_14'>2 Wochen</option><option value='12'>16 - 22 Tage</option><option value='6_21'>3 Wochen</option><option value='13'>&gt; 22 Tage</option></select>"
+"<div style=\"position:absolute;width:120px;height:20px;left:390px;top:55px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:13px;          font-weight:normal;          color:#5A5A5A;        \">Wer?</div>"
+"<select style=\"position:absolute;width:125px;height:18px;left:390px;top:80px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_erwachsene' name='erwachsene'><option value='25'>1 Erwachsener</option><option value='25;25'>2 Erwachsene</option><option value='25;25;25'>3 Erwachsene</option><option value='25;25;25;25'>4 Erwachsene</option><option value='25;25;25;25;25'>5 Erwachsene</option><option value='25;25;25;25;25;25'>6 Erwachsene</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_alter1' name='alter1'><option value='-1'>Kind 1</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:455px;top:105px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_alter2' name='alter2'><option value='-1'>Kind 2</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<select style=\"position:absolute;width:60px;height:18px;left:390px;top:130px;border:solid 1px #7494B2;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:11px;          color:#5A5A5A;        \" id='frmTrTWizard_69_alter3' name='alter3'><option value='-1'>Kind 3</option><option value='1'>< 2 J.</option><option value='2'>2 J.</option><option value='3'>3 J.</option><option value='4'>4 J.</option><option value='5'>5 J.</option><option value='6'>6 J.</option><option value='7'>7 J.</option><option value='8'>8 J.</option><option value='9'>9 J.</option><option value='10'>10 J.</option><option value='11'>11 J.</option><option value='12'>12 J.</option><option value='13'>13 J.</option><option value='14'>14 J.</option><option value='15'>15 J.</option><option value='16'>16 J.</option></select>"
+"<div style=\"position:absolute;width:85px;height:20px;left:455px;top:130px;          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:9px;          font-weight:normal;          color:#5A5A5A;        \">(Alter bei Reiseantritt)</div>"
+"<input style=\"position:absolute;width:111px;height:23px;left:390px;top:160px;background-image:url(http://thomascook-3pwizard.pixell.de/data/bgimages/btn_submit.jpg);          font-family:Verdana,Arial,'Times New Roman',Tahoma;          font-size:12px;          font-weight:bold;          color:#5A5A5A;          border:0px;          background-color:transparent;          background-repeat:no-repeat;          background-position:left center;          text-align:right;          cursor:pointer;        \" value='' type='submit' />"
+"</form>"
+"</div>"
;