
	function newWindowScroll(url) {
  	theWindow = window.open(url,
  	'mapWinScroll', 'width=367,height=287,scrollbars=yes,resizable=no')
	theWindow.focus();
	}
	
	function newWindowScroll2(url) {
  	theWindow = window.open(url,
  	'mapWinScroll', 'width=777,height=607,scrollbars=yes,resizable=no')
	theWindow.focus();
	}

	function newHolidayShippingWindow(url) {
  	theWindow = window.open(url,
  	'holidayShipping', 'width=650,height=500,scrollbars=no,resizable=no')
	theWindow.focus();
	}
    
	function settlementPop() {
	window.open( "settlement_pop.jsp", "myWindow", "status = 0, height = 250, width = 500, resizable = 0" )
}

function openNamedWindow(URL1) {
	var a = openNamedWindow.arguments
	
	var winname = ((a[1]!=null)?a[1]:'new');
	var passedWidth  = ((a[2]!=null)?a[2]:340);
	var passedHeight = ((a[3]!=null)?a[3]:350);
	
	var optionsList = "menubar,toolbar,location,status,scrollbars,resizable,width="+passedWidth+",height="+passedHeight+",left=100,top=75"
	
	var popupWin = window.open(URL1, winname,optionsList)
	if(window.focus){
		popupWin.focus();
		}
	}