var mailWin='';
function mailWindow(myPage) {
  var myWidth = 430;
  var myHeight = 300;	
  var myLeft = (screen.width - myWidth) / 2;
  var myTop = (screen.height - myHeight) / 2;
  winprops = 'height='+myHeight+',width='+myWidth+',top='+myTop+',left='+myLeft+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
  mailWin = window.open('../scripts/mailme.php?site='+myPage, 'Mail', winprops);
  if (parseInt(navigator.appVersion) >= 4) { mailWin.window.focus(); }
  }

function printWindow(myPage,lng){
  if (typeof lng=='undefined')
    lng='de';
  var myWidth = 600;
  var myHeight = 600;	
  var myLeft = (screen.width - myWidth) / 2;
  var myTop = (screen.height - myHeight) / 2;
  winprops = 'height='+myHeight+',width='+myWidth+',top='+myTop+',left='+myLeft+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
  printWin = window.open('../scripts/printme.php?site='+myPage+"&lng="+lng, 'Print', winprops);
  if (parseInt(navigator.appVersion) >= 4) { printWin.window.focus(); }
}

function startsearch() {
	if (window.location.search) {
		var search = window.location.search.substring(1);
		var iframe = document.getElementById('iframe');
		
		iframe.src= "http://www.suche.admin.ch/search.do?template=site_trefferliste_html&searchType=simple&displayLang=de&displayPools=no&selectedPools=internet&selectedGeneralCheckboxes=&selectedGeneralCheckboxes=openOrigDocInNewWindow&field%28site%29=www.admin.ch&field%28extension%29=&" + search;
	
		var inputfields = search.split("&");
		for (var i in inputfields) {
				var value = decodeURI(inputfields[i]);
				var v = value.split("=");
				if ( v[0] == 'queryString') {
					var searchValue = v[1];
					break;
				}
		}
		
		var field = document.getElementById('queryString');
	   field.value = searchValue;
	}
}
