window.focus();

//SHOULD BE CALLED ONLY FROM Village search form or results page.
var showhomewin = '';
function showhome(aurl) {
  if(is_nav4up)height = screen.height - 60;
  else height = screen.height - 100;
  options = 'screenX='+parseInt((screen.width-630)/2)+',left='+parseInt((screen.width-630)/2)+',screenY=20,top=20,width=630,height='+height+',resizable=0,scrollbars=1,location=0,status=0,toolbar=0,directories=0,menubar=0';
  showhomewin = window.open('','popup',options);
  if (showhomewin != null) {showhomewin.location = aurl}

}

function bookmark(params) {

	var url = 'http://www.villagerealestate.com/cms/' + params;
	
	if (window.sidebar) {window.sidebar.addPanel(document.title, url,"");} 
	else if( document.all ) {window.external.AddFavorite( url,document.title);}
	else alert("No automatic bookmark function is possible.  Please do this manually!");
	return true;

}

function aselection(mode,aurl) {
	var selectwin = '';
  options = 'screenX=0,left=0,screenY=0,top=0,width=130,height=145,resizable=0,scrollbars=0,location=0,status=0,toolbar=0,directories=0,menubar=0';
  selectwin = window.open('','selectwin',options);
  if (selectwin != null) {
    selectwin.location = aurl;
  }
  if (mode == 'a') alert('This property has been added to your selection list. You can store up to 100 properties on your selection list. Your selections will be saved for 24 hours or until you search for a different property type. To save your selections for a longer period click "view selections" then bookmark the page.');
  else if (mode == 'r') alert('This property has been removed from your selection list.');

}