function MM_window(theURL,wname,features) { window.open(theURL,wname,features);	}


function randomId() {return Math.ceil(Math.random()*10000);}

/* wm - nbsp GmbH / 31.01.2008 / Popup fuer Firmenportrait */
function MM_Company(url) { MM_window(url, 'FirmenPopup' + randomId(), 'resizable=yes,scrollbars=yes,menubar=yes,location=yes,toolbar=yes,status=yes'); }

//--------------------------------------------------------------------------------------------------
//--- open a popup window
//--------------------------------------------------------------------------------------------------
function open_popup_window( the_url, the_width, the_height )
{
	if ( the_width > 0 )
		popupWin = window.open( the_url, "popup", "dependent = 0, width = " + the_width + ", height = " + the_height + ", screenX = 20, screenY = 20, left = 20, top = 20, channelmode = 0, directories = 0, fullscreen = 0, location = 0, menubar = 0, resizable = 0, scrollbars = 1, status = 0, toolbar = 0, locationbar=0", "launcher");
	else
		popupWin = window.open( the_url, "popup", "dependent = 0, screenX = 20, screenY = 20, left = 20, top = 20, channelmode = 0, directories = 0, fullscreen = 0, location = 0, menubar = 0, resizable = 1, scrollbars = 1, status = 0, toolbar = 0, locationbar=0", "launcher");

	if( window.focus )
	{
		popupWin.focus();
	}
}

