//
// Funktion zum Oeffnen eines Fensters f. Koop.Partner
//
// Version/Datum:
//	1.0/20.08.2001/MRi/Erstellung
// 1.1/01.07.2002/MRi/Gutschein-Einstieg abgeschaltet
// 1.2/27.05.2003/chg/Koop-Partner-Parameter-Übergabe
//

function schwacke_fenster(args)
{
	koop_id=schwacke_fenster.arguments[0];
	url='http://schwacke.kabel1.de/b2b_wp/de/wert/koop_einstieg.php?koop_id='+koop_id;

	if(schwacke_fenster.arguments.length>1)
	{
		params=schwacke_fenster.arguments[1];
		url=url+'&params='+params;
	}

	breite=790;
	hoehe=580;

	XX=screen.availWidth;
	YY=screen.availHeight;
	x=(XX-breite)/2;
	y=(YY-hoehe)/2;

	var win=window.open(url,'schwacke','height='+hoehe+',width='+breite+',toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no,left='+x+',top='+y);
	if (win.focus) { win.focus(); }
}

function schwacke_wp(args)
{
	koop_id=schwacke_wp.arguments[0];
	url='http://schwacke.kabel1.de/b2b_wp/de/wert/koop_einstieg.php?koop_id='+koop_id;

	if(schwacke_wp.arguments.length>1)
	{
		params=schwacke_wp.arguments[1];
		url=url+'&params='+params;
	}

	breite=790;
	hoehe=580;

	XX=screen.availWidth;
	YY=screen.availHeight;
	x=(XX-breite)/2;
	y=(YY-hoehe)/2;

	var win=window.open(url,'schwacke','height='+hoehe+',width='+breite+',toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no,left='+x+',top='+y);
	if (win.focus) { win.focus(); }
}
