// JavaScript Document
function fenster(url,winwidth,winheight) 
{
var position_x = 0;
var position_y = 0;
NewWindow=window.open(url,'_blank','status=no,menubar=no,scrollbars=yes,resizable=yes,width='+winwidth+',height='+winheight)
NewWindow.moveTo(position_x, position_y);
}

function events(url) 
{
	var position_x = 0;
	var position_y = 0;
	neues_fenster = window.open(url,"displayWindow","width=460,height=510,resizable=yes,scrollbars=no,menubar=no,status=no");
	neues_fenster.moveTo(position_x, position_y);
}

function card(url,winwidth,winheight,position_x,position_y) 
{
NewWindow=window.open(url,'_blank','status=no,menubar=no,scrollbars=no,resizable=no,width='+winwidth+',height='+winheight)
NewWindow.moveTo(position_x, position_y);
}

function cardscroll(url,winwidth,winheight,position_x,position_y) 
{
NewWindow=window.open(url,'_blank','status=no,menubar=no,scrollbars=yes,resizable=no,width='+winwidth+',height='+winheight)
NewWindow.moveTo(position_x, position_y);
}