// JavaScript Document

function SendEmail(towhom)
{
	strRecipient=towhom + "@fullestop.co.uk";
	window.location= "mailto:" + strRecipient;
//	return false;
}

function open_url(site_passed)
	{
		strURL="";
		strWindowName=site_passed;
		
		switch (site_passed)
		{
			case "0":
				strURL="http://www.timex.co.uk/icontrol/";
				break;				
			case "1":
				strURL="http://www.peugeot407me.com/";
				break;
			case "2":
				strURL="http://www.chasewoodvillas.com/";
				break;
			case "3":
				strURL="http://www.deancarlsonrealestate.com/";
				break;
			case "4":
				strURL="http://www.regencyparctownhomes.com/";
				break;	
			case "5":
				strURL="http://www.mwwre.com/";
				break;		
			case "6":
				strURL="http://www.fullestop.co.uk/portfolio/royalbreeze/";
				break;		
			case "7":
				strURL="http://www.fullestop.com/portfolio/derewala/";
				break;
		}	
		
		window.open(strURL,strWindowName);
		return false;
	}

