
function show(id) {
	document.getElementById(id).style.visibility = "visible";
}

function hide(id) {
	document.getElementById(id).style.visibility = "hidden";
}

function menu_hover(id,sel) {
	if (document.getElementById(id).style.backgroundImage == "url(img/rg_knop_hover.png)")
	{
		
		if (sel == "selected")
		{
			document.getElementById(id).style.backgroundImage = "url(img/rg_knop_selected.png)";
		}
		else
		{
			document.getElementById(id).style.backgroundImage = "url(img/rg_knop.png)";        
		}
	}
	else
	{
		document.getElementById(id).style.backgroundImage = "url(img/rg_knop_hover.png)";    
	}    
}


function toon_img(msg,naam) {
	img = "img_prd/large/"+msg+".jpg";

	OpenWindow=window.open("","","height=520,width=520,toolbar=no,scrollbars=no,menubar=no,resizable=yes");
	
	OpenWindow.document.write("<HTML>");
	OpenWindow.document.write("<HEAD>");
	OpenWindow.document.write("<TITLE>Relax & Go</TITLE>");
	OpenWindow.document.write("<link href='general.css' type='text/css' rel='stylesheet'>");
	OpenWindow.document.write("</HEAD>");
	OpenWindow.document.write("<BODY style='padding-left: 45px'>");
	OpenWindow.document.write("<br>");
	OpenWindow.document.write("<font style='font-weight: bold'>"+naam+"</font");
	OpenWindow.document.write("<br><br>");
	OpenWindow.document.write("<img src='"+img+"' height='400' width='400'>");
	OpenWindow.document.write("<br><br>");
	OpenWindow.document.write("<FORM>");
	OpenWindow.document.write("<INPUT class='knop' style='width: 400px' TYPE='BUTTON' VALUE='Close Window' onfocus='blur()' onClick='window.close()'>");
	OpenWindow.document.write("</FORM>");
	
	OpenWindow.document.write("</BODY>");
	OpenWindow.document.write("</HTML>");
	OpenWindow.document.close();
	
	return false;
}