<!-- Open & Centre Window On VideoTour Button Click

var win = null;
function OpenTourWindow(TourURL,WindowName)
{
w = 750;
h = 460;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'status=no,height='+h+',width='+w+',top='+wint+',left='+winl
win = window.open(TourURL, WindowName, winprops)
win.window.focus();
return false;
}

//-->

<!-- Send email to a friend

function SendToFriend(PropertyName,Message,PageURL) {

var EmailSubject = "?SUBJECT=" + PropertyName + "&amp;" ;
var EmailBody = "BODY=Hi,%0A%0A" + Message + "%0A%0A" + PropertyName + "%0A%0AClick on the following link to see this property:%0A%0A" + PageURL + "%0A%0ARegards," ;

window.open("mailto:" + EmailSubject + EmailBody,"","")
}

//-->
