//de
function win_open(href, width, height)
{
	if ((width == '') &&  (height == ''))  
	{
		window.open(href, '_blank', 'toolbar=no,location=no,status=no,menubar=no,personalbar=no,scrollbars=yes,resizable=yes,screenx=50,left=50,screenY=50,top=50');
	} 
	else
	{
		window.open(href, '_blank', 'toolbar=no,location=no,status=no,menubar=no,personalbar=no,scrollbars=no,width=' + width + ',height=' + height + ',resizable=yes,screenx=50,left=50,screenY=50,top=50')
	}
}

function sbbpopup(html, desc, wid, hig) 
{ 
window.open(html, desc,"width="+wid+",height="+hig+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
}

function sbbpopup_sb(html, desc, wid, hig) 
{ 
window.open(html, desc,"width="+wid+",height="+hig+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
}