// JavaScript Document
function sendForm() {
	popupWin();
	document.forms['subscribe'].submit();

}
function popupWin()
{
	
	var hoch = screen.height/2-200;
	var breit = screen.width/2-425;
	Fenster = window.open("subscribe.php?cid=2418","subscribeWin","width=850,height=400,resizable=no");
	if(navigator.appName=="Netscape")
	{
	Fenster.moveTo(breit,hoch);
	Fenster.creator=self;
	}
	Fenster.focus();
} // end function popup
