//Writes the Options in the "area"-Select component for the search
function agreed(url) 
{
	MM_openBrWindow(url,'newWindow',"toolbar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1,menubar=1");
  	window.close();
}


function openWithDisclaimer(urlToOpen) {
	MM_openBrWindow(urlToOpen,'Disclaimer','scrollbars=no,resizable=no,width=400,height=285,screenX=200,screenY=50');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  var win = window.open(theURL,winName,features);
  win.focus();
}


