// 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();
}

function OpenVorschau(fn)
{
	var o = document.getElementById('Vorschau');
	if (!o) return;
	var img = document.createElement('img');
	img.setAttribute('src', '/img/vorschau/'+fn);
	o.appendChild(img);
	o.style.display = 'block';
	window.document.onmousemove = MoveVorschau;
}

function CloseVorschau()
{
	var o = document.getElementById('Vorschau');
	if (!o) return;
	o.style.display = 'none';
	while (o.hasChildNodes()) o.removeChild(o.firstChild);
	window.document.onmousemove = null;
}

function MoveVorschau(e)
{
	var o = document.getElementById('Vorschau');
	if (!o) return;
	if (!e)	e = window.event;
	var mx = e.clientX;
 	var my = e.clientY;
 	//alert(mx+' '+my);
 	o.style.top = (my+20)+'px';
 	o.style.left = (mx+20)+'px';
}
