// MAYBO WEBSITE JAVASCRIPT FILE //

d=document;

function movepic(img_name,img_src) {
	d[img_name].src=img_src;
}

function printEmail() {
	d.writeln('<a href="mailto:info'+'@'+'maybo'+'.com" target="_blank">info'+'@'+'maybo'+'.com</a>');
}

function printEmailFooter() {
	d.writeln('<a href="mailto:info'+'@'+'maybo'+'.com" target="_blank" class="footer">info'+'@'+'maybo'+'.com</a>');
}

function printYear() {
	thedate=new Date();
	theyear=thedate.getFullYear();
	d.write(theyear);
}

function printEmailFriend() {
	d.writeln("<a href=\"mailto:?subject=Maybo%20Website&body=Please%20visit:%20"+top.location+"\" onmouseover=\"movepic('email','http://www.maybo.com/images/email_button_on.gif')\" onmouseout=\"movepic('email','http://www.maybo.com/images/email_button.gif')\"><img src=\"http://www.maybo.com/images/email_button.gif\" alt=\"Email a Friend\" width=\"100\" height=\"34\" name=\"email\" border=\"0\"></a>");
}

function printAddFavourites() {
	d.writeln("<a href=\"javascript:window.external.AddFavorite('"+top.location+"', '"+document.title+"')\" onmouseover=\"movepic('favourites','http://www.maybo.com/images/favourites_button_on.gif')\" onmouseout=\"movepic('favourites','http://www.maybo.com/images/favourites_button.gif')\"><img src=\"http://www.maybo.com/images/favourites_button.gif\" alt=\"Add to Favourites\" width=\"100\" height=\"26\" name=\"favourites\" border=\"0\"></a>");

}

function doMouseOver(imageId, imgSrc) {
	if ((imageId != "") && (imgSrc != "")) {
        var x=document.getElementById(imageId);
        x.src="images/"+imgSrc;
	}
}


// END //