﻿// JScript File

function MM_openBrWindow(theURL,winName,features) 
		{
				
				window.open(theURL,winName,features);
		}
   function ShowOption()
   {
   
    document.getElementById('divShowDetail').style.display='none';
    document.getElementById('divSearchArchitect').style.display='block';
    document.getElementById('ddlCity').value='Select City';
     document.getElementById('ddlState').value='Select State';
    return false;
   }
   
   
   function ValidateSearch()
   {
   
      if(document.getElementById('ddlCity').value=='Select City' ||document.getElementById('ddlCity').value==null)
        {
            alert('City: ');
            document.getElementById('ddlCity').focus();
            return false;
        }
          if(document.getElementById('ddlState').value=='Select State')
        {
            alert('State: ');
            document.getElementById('ddlState').focus();
            return false;
        }
           }
