// open the send to a freind window
var  sendfriendWindow
function sendfriend(){
		if (sendfriendWindow && !sendfriendWindow.closed){		  // Checks to see if a window is already open
			sendfriendWindow.close();
			sendfriendWindow =  window.open('http://www.conseilautobus.ca/php/sendfriend/index.php?referURL='+self.location.href,'','width=500,height=360,scrollbars=1,noresize');
		}else{
			sendfriendWindow =  window.open('http://www.conseilautobus.ca/php/sendfriend/index.php?referURL='+self.location.href,'','width=500,height=360,scrollbars=1,noresize');
		}
}