function setGalerieImg ( img ) {
	imghtml = "<img src='"+img+"'>";
	document.all.galerie_image_large.innerHTML = imghtml;

}


function open_window(url) {
	mywin = window.open(url, 'NewWindow', 'menubar,scrollbars,width=500,height=600,left=20,top=20,resizable=yes');
}


function close_popup() {
	self.window.close();
}

function showImg (url,winName,w,h) {
	w=eval(w)+10;
	h=eval(h)+60;
	// ff
	// w=eval(w)+10;
	// h=eval(h)+45;
	imgpopup = window.open(url, "imgpopup", 'width='+w+',height='+h+',left=20,top=20');
	imgpopup.resizeTo(w,h);
	imgpopup.focus();
}