function newpopup(site,w,h) {
	x = screen.availWidth / 2 - w / 2;
	y = screen.availHeight / 2 - h / 2;
	window.open (site,'','width=' + w + ',height=' + h + ',left=' + x + ',top=' + y + ',screenX=' + x + ',screenY=' + y + ',scrollbars=yes,resizable=yes');
}

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