// JavaScript Document
	//document.getElementById("bodyframe").src=content+".html"

function call(){
	alert("hello world");
}

function mover(imageid){
	document.getElementById(imageid).src="./img/" + imageid + "_mo.gif";
}
function mout(imageid){
	document.getElementById(imageid).src="./img/" + imageid + ".gif";
}

//	QSframe = window.location.search;  // equals content of field query_string. everything after ?
function changeVisibility(element){
	document.getElementById("submenu1").style.visibility="hidden";
	document.getElementById("submenu2").style.visibility="hidden";
	document.getElementById("submenu3").style.visibility="hidden";
	document.getElementById("submenu4").style.visibility="hidden";
	document.getElementById("submenu5").style.visibility="hidden";
	if (element!="none"){
		document.getElementById(element).style.visibility="visible";
	}
}

function showPopup(url,w,h) { 
	var bheight=(screen.height)-90;
	var bwidth=(screen.width)-40;
//newwindow=window.open(url,'name','height=' + h + ',width=' + w + ',top=200,left=300,resizable'); 
//newwindow=window.open(url,"ditisdenaam",height='90%',width='90%',top='10',left='10',resizable); 
newwindow=window.open(url, "windowname", 'width=' + bwidth + ', height=' + bheight + ', top=10, left=20, scrollbars=yes');
if (window.focus) {newwindow.focus()} 
} 

function changeContent(page){
	var pagename=page+".html";
	document.getElementById("bodyframe").src=pagename;
}

function adjustBodyheight() {
	var bheight=(screen.height)-430;
	//alert(bheight);
	var xxx=bheight+"px"
	document.getElementById("bodyframe").style.height=xxx;
}

function showSubmenu(menuitem) {
	document.getElementById("submenu").innerHTML="xyz";
}

var times = 0;
var name = "";

function blink() {
	times++;
	var e = document.getElementById("BannerNewBoats");
	e.style.visibility = ( e.style.visibility == 'visible' )? 'hidden' : 'visible';
	if(times < 5){
		setTimeout("blink();", 500);
	}
}

function loadMailAddress(){
var part1 = "<li>email: in";
var part2 = "fo@swif";
var part3 = "t-sport.de<";
var part4 = "/li>";

document.getElementById("mailswift").innerHTML=part1 + part2 + part3 + part4
}

function loadelements(strelements){
var part1 ;
var part2 ;
var part3 ;
var part4 ;
var part5 ;

if (strelements.indexOf("1")>0){
	part1 = "<li>email: in";
	part2 = "fo@swif";
	part3 = "t-sport.de<";
	part4 = "/li>";
	document.getElementById("mailswift").innerHTML=part1 + part2 + part3 + part4
}

if (strelements.indexOf("2")>0){
	part1 = "Webdesign & -realisation: <a href='mailto:art";
	part2 = "hur_bro";
	part3 = "uns@";
	part4 = "yahoo.com'>";
	part5 = "Arthur Brouns</a>";
	document.getElementById("webdesignfooter").innerHTML=part1 + part2 + part3 + part4 + part5;
}

if (strelements.indexOf("3")>0){
	blink();
}
}