    function openMapWindow(url) {
        window.open(url, 'map', 'width=650,height=800,top=170,left=162,toolbar=no,location=no,directories=no,status=no,menubar=no,dependent=yes,resizable=no,status=no,scrollbars=yes');
    }
    
    
    function openconvert(file,input) {
        window.open(file, input, 'width=640,height=215,resizable=1');
    }

        function OpenCalendar(dayField, day, monthField, month, yearField, year, formName) {
              file = 'http://store.findinghotel.com/util/calendar.jsp?formName=' + formName;
            if ( dayField != null )
              file += '&dayField=' + dayField + '&day=' + day;
            if ( monthField != null )
              file += '&monthField=' + monthField + '&month=' + month;
            if ( yearField != null )
              file += '&yearField=' + yearField + '&year=' + year;
            window.open( file, "dates", 'width=200,height=200,resizable=1');
        }

        function OpenCalendarRevised(dayField, day, monthField, month, yearField, year, formName, calNum, depMonthField, depDayField) {
              file = 'http://store.findinghotel.com/util/calendar.jsp?formName=' + formName;
            if ( dayField != null )
              file += '&dayField=' + dayField + '&day=' + day;
            if ( monthField != null )
              file += '&monthField=' + monthField + '&month=' + month;
            if ( yearField != null )
              file += '&yearField=' + yearField + '&year=' + year;
            if ( calNum != null )
              file += '&calNum=' + calNum;
            if ( depMonthField != null )
              file += '&depMonthField=' + depMonthField;
            if ( depDayField != null )
              file += '&depDayField=' + depDayField;
            window.open( file, "dates", 'width=200,height=200,resizable=1');
        }
		
    function openphotos(file,input,width,height) {
        var attr = "top=5,left=75,width=" + width + ",height=" + height + ",resizable=1,scrollbars=yes";
        var win = window.open(file, input, attr);
        if (win) win.focus();
    }
	<!--
	function MM_jumpMenu(targ,selObj,restore){ //v3.0
	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
	}
//-->
