<!-- hide script from old browsers 
/* ------- BBVYC Standard Javascript Functions ----------- */

/* -------- Bookmark this page ---------- */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}

/* -------- Hide email address from robots ---------- */

function jemail(user, domain, suffix, outText){
	var user;
	var domain;
	var suffix;
	var outText

	document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + outText + '</a>');

}

/* --------- Font Re-Sizer ------------- */
function resizeText(multiplier) {
	if (document.body.style.fontSize == "") {
	    document.body.style.fontSize = "1.0em";
	}
	document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";
}
// end hiding script from old browsers -->
