// Email link
function mailer(naam,domein, onderwerp) {
	location.href="mailto:" + naam + "@" + domein + "?subject=" + onderwerp;
	return true;
}

// New window
function openWindow(file,name)
{
	window.open(file, name, 'menubar=0,location=0,toolbar=0,scrollbars=1,resizable=0,status=0,width=380,height=450 top=50,left=50');
}

function show_tabs(ID){
	if(document.getElementById(ID).style.display=="block"){
		document.getElementById(ID).style.display='none';
	}
	else{
		document.getElementById(ID).style.display='block';
	}
}

function inDiv(waardes){
	var fileref = "";
	fileref=document.createElement('script');
	fileref.setAttribute("type","text/javascript");
	fileref.setAttribute("src", waardes);
	document.getElementsByTagName("head").item(0).appendChild(fileref);
}

/**
 * Opens a new window to display an image
 * Image must be 770 x 200px
 */
function open_preview(path, title)
{
	var w = window.open("","Preview", "width=770, height=200");
	w.document.write("<html><head><title>" + title + " | Acta Marine</title>");
	w.document.write("<style>*{margin:0;padding:0;font-family:verdana,arial;font-size:10px;}</style></head><body>");
	w.document.write("<img src='"+path+"' id='image' onclick='window.close();'>");
	w.resizeTo(w.document.getElementById("image").width, w.document.getElementById("image").height+80);
	w.document.write("<span style=\"width:100%;text-align:center;\"><a href=\"#\" onclick=\"window.close();\">Close</a></span>")
	w.document.write("</body></html>");
	w.focus();
	w.document.close();
}