function OpenWindow(URL,PROP)
{
	w=window.open(URL,'NewWindow',PROP);
	w.focus();
}

function OpenWindow2(URL,NAME,PROP)
{
	w=window.open(URL,NAME,PROP);
	w.focus();
}

function BewertungStart(Sprache)
{
   if (screen.height > 600)
	{
	   hoehe = 642;
	   breite = 998;
	   style = 2;
	}
   else
	{
		hoehe = 545;
		breite = 775;
		style = 1;
	}
	
	w = window.open('http://www2.auto-i-dat.ch/Start.aspx?Sprache=' + Sprache + '&Style=' + style,'Bewertung','height=' + hoehe + ',width=' + breite + ',resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,status=no');
	w.focus();
}
