
var win=null;
function popUp(mypage,myname,w,h,scroll,pos){
    if(pos=="random") {
	LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
    }
    if(pos=="center") {
	LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
    }
    else if((pos!="center" && pos!="random") || pos==null) {
	LeftPosition=0;TopPosition=20
    }
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
//    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes';
    win=window.open(mypage,myname,settings);
    if(win.focus) {
	win.focus();
    }
}

var verzoegerung=150
var timerId
function ticker(nachricht) {
    text=nachricht
    document.frm.ticker.value=text
    nachricht=nachricht.substring (1, nachricht.length) + nachricht.substring (0, 1)
    neu=nachricht
    timerId=setTimeout("ticker(neu)", verzoegerung)
}

function checkNewsletterIntervall() {
    var selection = document.newsletterWizard.intervall;
    for (i=0; i<selection.length; i++) {
	if (selection[i].checked == true) {
	    return selection[i].value
	}
    }
}
