//
//  notblue
//  Fenster-PopUp
//  by Michi Bundscherer
//
//  www.notblue.de
//  
var newwin;
function nb_firm_popup(url)
	{
		if (document.getElementById) {
			breite=630;
			hoehe=388;	// IE 5 and NN 6 code
		}
		else if (document.layers) {
			breite=630;
			hoehe=406;	// NN4 code
		}
		else {
			breite=630;
			hoehe=390;	// IE 4 and other code
		}
	var winleft = (screen.width - breite) / 2;
	var wintop = ((screen.height - hoehe) / 2.6) - 5;
	winprops = 'width='+breite+',height='+hoehe+',top='+wintop+',screenY='+wintop+',left='+winleft+',screenX='+winleft+',toolbar=0,status=1,resizable=0,location=0,menubar=1,scrollbars=1';
	popname = 'nbfirmpopup';
	newwin = window.open(url,popname,winprops);
	}
