
function sendMail(name,domain) {

	mailadress = name + "@" + domain;
	uAgent = navigator.userAgent.toUpperCase();
	
	if (uAgent.indexOf("WIN") >= 0) {
		//alert("ich bin PC");
		bodyInhalt = "Sehr geehrtes NOVA-Team,%0A";
		bodyInhalt += "%0A";
		bodyInhalt += "Hiermit stelle ich einen Antrag für den Zugang zur geschützten NOVA Pressesektion. Die Personalien sind wie folgt: %0A";
		bodyInhalt += "%0A";
		bodyInhalt += "Firma: %0A";
		bodyInhalt += "Name/Vorname: %0A";
		bodyInhalt += "E-Mail: %0A";
		bodyInhalt += "Telefon: %0A";
		bodyInhalt += "Fax: %0A";
		bodyInhalt += "Strasse/Nr.: %0A";
		bodyInhalt += "PLZ/Ort: %0A";
		bodyInhalt += "%0A";
		bodyInhalt += "Mit freundlichen Grüssen %0A";
	} else {
		//alert("ich bin mac");
		bodyInhalt = "Sehr geehrtes NOVA-Team,\n\n";
		bodyInhalt += "Hiermit stelle ich einen Antrag für den Zugang zur geschützten NOVA Pressesektion. Die Personalien sind wie folgt:\n\n";
		bodyInhalt += "Name/Vorname: \n";
		bodyInhalt += "E-Mail: \n";
		bodyInhalt += "Telefon: \n";
		bodyInhalt += "Fax:  \n";
		bodyInhalt += "Strasse/Nr.: \n ";
		bodyInhalt += "PLZ/Ort:  \n\n"; 
		bodyInhalt += "Mit freundlichen Grüssen  \n";
	}
	
	location.href="mailto:" + mailadress + "?subject=Presseinformationen&body=" +bodyInhalt;

}
function kontakt() {
	mailadress = "nova-infos" + "@" + "ethz.ch";
	location.href="mailto:" + mailadress;
}
function popup(img) {
   newWin = window.open('popup.php?img=' + img, "NOVA","resize=no,toolbar=no,statusbar=no,scrollbars=no,height=340,width=510");
   newWin.focus();
}

