function winOpen(url, breite, hoehe)
{
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = yes,titlebar = no,scrollbars = yes,fullscreen = no,top ="+oben+",left ="+links);
} 

function openWin(url,x,y,width,height,id)
{
	winparams='toolbar=no,location=no,directories=no,menubar=no,status=yes,';
	winparams+='scrollbars=yes,resizable=yes';
	if (navigator.appName.indexOf("Microsoft")>=0)
	{
		winparams+=',left=' + x + ',top=' + y + ',width=' + width + ',height=' + height;
	}
	else
	{
		winparams+=',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height;
	}
	popup=window.open(url,"vodafonepopup"+id,winparams);
	popup.focus();
}

function openWin2(url,x,y,width,height,id)
{
	winparams='toolbar=no,location=no,directories=no,menubar=no,status=no,';
	winparams+='scrollbars=no,resizable=no';
	if (navigator.appName.indexOf("Microsoft")>=0)
	{
		winparams+=',left=' + x + ',top=' + y + ',width=' + width + ',height=' + height;
	}
	else
	{
		winparams+=',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height;
	}
	popup=window.open(url,"vodafonepopup"+id,winparams);
	popup.focus();
}

function openWin3(url,x,y,width,height,id)
{
	winparams='toolbar=no,location=no,directories=no,menubar=no,status=no,';
	winparams+='scrollbars=yes,resizable=yes';
	if (navigator.appName.indexOf("Microsoft")>=0)
	{
		winparams+=',left=' + x + ',top=' + y + ',width=' + width + ',height=' + height;
	}
	else
	{
		winparams+=',screenX=' + x + ',screenY=' + y + ',width=' + width + ',height=' + height;
	}
	popup=window.open(url,"vodafonepopup"+id,winparams);
	popup.focus();
}

