// JavaScript Document
function OpenGalerie(param)
{
	var w = window.open("/galerie.php?"+param, "Galerie", "width=650,height=680,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
	w.focus();
}

function OpenPopUp(url, name, w, h)
{
	var w = window.open(url, name, "width="+w+",height="+h+",menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
	w.focus();
}
