function set_standart(img)
{
	window.clearTimeout(geomix_timer);
	img.className='';
}

function set_klein(img)
{
	img.className='vorschau_klein';
	geomix_timer=window.setTimeout(function(){img.className='vorschau_gross'},300);
	img.onmouseout = function() { set_standart(img); };
}

function clearDefault(el)
{
  	if (el.defaultValue==el.value) el.value = ""
}

function MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}

function Galerie_openWindow(path,width,height)
{
	window.open('http://www.petersbuehel.at/image.php?path='+path,'zoom','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+((screen.width-width) / 2)+',top='+((screen.height-height) / 2)+',width='+width+',height='+height);
}

 function UnCryptMailto( s )
{
	var n = 0;
	var r = "";
	for( var i = 0; i < s.length; i++)
	{
		n = s.charCodeAt( i );
		if( n >= 8364 )
		{
			n = 128;
		}
		r += String.fromCharCode( n - 1 );
	}
	return r;
}

function linkTo_UnCryptMailto( s )
{
	location.href=UnCryptMailto( s );
}