/*   Script for the dynamic popup images */
function imagePopup(image){
	var img = new Image();
	img.src = image;
	//var breite = img.width+25;
	//var hoehe = img.height+25
	var breite = 600+25;
	var hoehe = 600+25;
	image = img;
	var options=Array();
	options[0] = "scrollbars=no";
	options[1] = "width="+breite+",height="+hoehe;
	var opts = options[0]+", "+options[1];
	window.open(image.src, "_new", opts);

}

function imagePopup2(image){
	var img = new Image();
	img.src = image;
	//var breite = img.width+25;
	//var hoehe = img.height+25
	var breite = 750+25;
	var hoehe = 500+25;
	image = img;
	var options=Array();
	options[0] = "scrollbars=no";
	options[1] = "width="+breite+",height="+hoehe;
	var opts = options[0]+", "+options[1];
	window.open(image.src, "_new", opts);
}