function bookmarkus(title,url){
if (window.sidebar) // firefox
	alert("Please use CTR-D to bookmark in FireFox");
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);
}

function mailpage()
{
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body=Click below to access the link e-mailed from " + document.title;
mail_str += ". You can view it at " + location.href;
location.href = mail_str;
}



  if (top.location != location) {
    top.location.href = document.location.href ;}





function nocopy(target){
if (typeof target.onselectstart!="undefined") 
	target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") 
	target.style.MozUserSelect="none"
else 
	target.onmousedown=function(){return false}
target.style.cursor = "default"
}