
function CreateBookmarkLink() { 
title = "Men's Health Information, Including Fitness, Nutrition, Weight Loss, Working Out &amp; Sex"; 
url = "http://www.mens-health.com/"; 
if (window.sidebar) { 
// Mozilla Firefox Bookmark 
alert("FIREFOX!");
window.sidebar.addPanel(title, url,""); 
} else if( window.external ) { 
// IE Favorite 
alert("YES IE");
window.external.AddFavorite( url, title); 
} 
else if(window.opera && window.print) { 
// Opera Hotlist 
return true; } 
}

function validateSubscribe() 
{
		
		var errorReport = '';
		
		if (document.subscribeForm.UserEmail.value == '') 
		{
			errorReport += "You have not supplied an email address";			
		}
		
		if (errorReport.length > 1) 
		{
			alert(errorReport);
			return false;
		} else {
			return true;
		}

}

