function OpenMap(url)
{
	window.open (url, "mywindow","location=0,status=0,scrollbars=0, width=515,height=320"); 
}

function getUrlParameter( 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];
}

function SetSelectIndex(id,value) {

  s=document.getElementById('property'); 
  if (!s) return false;
  
  for (var i=0;i<s.options.length;i++) {
      if (s.options[i].value == value)
          s.options[i].selected = true;
  }
  
  
}

