function openwindow(url, w, h, t, l)
{
	window.open(url, 'infoWindow' ,'resizable=no,width=' + w + ' ,innerwidth=' + w + ',height=' + h +',innerheight=' + h +',top=' + t +',left='+l+', toolbar=no,scrollbars=yes,status=no,menubar=no').focus();   
}
function googleSearch()
{
	var f=document.forms[0];

	f.action = "http://mygoogle.transavia.loc/search";
	f.method = "get";
	f.submit();
}

function writeGoogleSearch()
{
	var html ="<table border=0 cellspacing=0 cellpadding=0>";
	html+="	<tr>";
	html+="		<td>";
	html+="			<input type=\"text\" name=\"q\" size=\"25\" maxlength=\"255\" value=\"\"/>";
	html+="			<input type=button onClick=\"googleSearch()\" value=\"Zoeken\">";
//	html+="			<input type=\"hidden\" name=\"site\" value=\"transavia\"/> ";
//	html+="			<input type=\"hidden\" name=\"client\" value=\"transavia\"/>"; 
//	html+="			<input type=\"hidden\" name=\"proxystylesheet\" value=\"transavia\"/>";
//	html+="			<input type=\"hidden\" name=\"output\" value=\"xml_no_dtd\"/>";
	html+="		</td>";
	html+="	</tr>";
	html+="</table>";

	document.write(html);
}
