// JavaScript Document

function getE(objName){
	return document.getElementById(objName);
}

function openRecomment(restName, restLink){
	var email = "emailadresse"; 
	var subject = "Ich wollte dir das "+ escape(restName) +" empfehlen"; 
	var bodyMessage = "Hallo !%0DIch wollte dir kurz das Restaurant '"+ escape(restName) +"' vorstellen.%0D%0DAlle weiteren Infos findest du hier:%0D" + escape(restLink); 
	
	var mailtoLink = 'mailto:'+email+'?subject='+subject+'&body='+bodyMessage; 
	
	winRecomm = window.open(mailtoLink,'recommWindow'); 
	if (winRecomm && winRecomm.open &&!winRecomm.closed) winRecomm.close(); 
}