/* javascript by christian wagner */

function openWindow(id, url, width, height, options)
{
    if ( !options ) 
    {
	  options="";
	}
	window.open( url, id, "width="+width+",height="+height+","+options );
}

function checkFrameset(content)
{
	if(top==self)
	{
		if (window.opera) 
			window.onload=freeOpera();
		else 
		{
			top.location.href=content;
		}
	}
}

function freeOpera()
{
	document.links['freeOpera'].click();
}

function selectStylesheet()
{
	if ( screen.width < 1024 )
	{
		document.getElementById("CSS").href = "/lib/eisblume_small_res.css";
	}
	else	
	{
		document.getElementById("CSS").href = "/lib/eisblume.css";
	}
}