function open_fullview(bild_src, file_dir, b, h) {
	wind_b = parseInt(b) + 40;
	wind_h = parseInt(h) + 100;
	//alert(wind_b + " - " + wind_h);
	url = "float_fullview.php?bild_src=" + bild_src + "&file_dir=" + file_dir + "&bild_h=" + h + "&bild_b=" + b;
	//alert(url);
	newWind = open(url,"fullview","toolbar=no,statusbar=no,scrollbars=no,height=" + wind_h + ",width=" + wind_b);
	//newWind.moveTo(move_x, move_y);
	newWind.focus();
	newWind.resizeTo(wind_b, wind_h);
}
function open_printview(url) {
	newWindPrint = open(url);
	newWindPrint.focus();
}

//
// browsercheck
var isIE = false;
var isDOM = false;

if (parseInt(navigator.appVersion) >= 4) {
	if (navigator.appName.indexOf("Netscape") != -1) {
		isNav = true;		
	}
		if (navigator.appName.indexOf("Microsoft") != -1) {
		isIE = true;
	}
}

novar = "";
das_at = "@";
function send_mail(name,leer,domain) {
	location.href = "mailto:" + name + das_at + domain;
}

function open_mp3(url) {
	newWind = open(url,"mp3","toolbar=no,statusbar=no,scrollbars=no,height=100,width=300");
	newWind.focus();
}