 /******************************************************************************
* lib_hst.js                                                                   *
*                                                                              *
* HOME SUITE TORONTO                                                           *
*******************************************************************************/

function VerifyContact()
	{
	var email_ad=document.form2.email.value
	

		if (document.form2.name.value == "") 
		{
			alert ("Please enter your name...");
			return false;
		}	
		else if ((email_ad.indexOf("@")==-1) || (email_ad.indexOf(".")==-1))
		{
			alert ("Please enter a valid email address.");
			return false;
		} 	
		else
			return true;
		}		
			

 var urlAddress = window.location.href;
 var pageName = "Home Suite Toronto";

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }

function initMail(form) {
text = "Check out this page at HomeSuiteToronto.com " + window.referrer;
form.message.value = "Hi " + form.sendto.value + " (" + form.to.value + "):\n\n"
 + text + "\n\nYour Friend,\n" + form.sendername.value + "(" + form.senderemail.value + ")";
return (form.to.value != "");
}



function openEmailer(urlv)
{
open ("email_page.asp?url="+urlv+"","Emailer", "height=400,width=400,scrollbars=no,location=0,resizable=no,status=no,border=no")
}

