// JavaScript Document
<!--

function gup( name ){  
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  
	var regexS = "[\\?&]"+name+"=([^&#]*)";  
	var regex = new RegExp( regexS );  
	var results = regex.exec( window.location.href );  
	if( results == null )    
		return "";  
	else    
		return results[1];
}


var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name',config='width=700,height=600, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes');
	if (window.focus) {newwindow.focus()}
}

function openWin(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function openSettlement(theURL) { 
 	window.open(theURL,'Settlement',config='width=700,height=600, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes');
 }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
