if (top != self) top.location.href = location.href;
function addbookmark(){
	var url="http://www.legal-anabolic.net/";
	var title="Legal Anabolics - Bodybuilding Hardline";
	addBookmark(title,url);
}

function onFocusSearch(ctrl){
	if (ctrl.value == "Search")
		ctrl.value="";
}

function searchMouseOut(){
	var ctrl=document.searchform.searchBut;
	if (!ctrl) return;
    ctrl.style.backgroundColor="#1A1732";
}

function searchMouseOver(){
	var ctrl=document.searchform.searchBut;
	if (!ctrl) return;
//    ctrl.style.backgroundColor="#351343";
	ctrl.style.backgroundColor="#625ee7";
}

function go(ctrl){
	if (ctrl.selectedIndex == 0)
		return;
	var url = ctrl.options[ctrl.selectedIndex].value;
	window.location.replace(url);
}

function addBookmark(title,url) {

  var msg_netscape = "NetScape message";
  var msg_opera    = "This function does not work with this version of Opera.  Please bookmark us manually.";
  var msg_other    = "Your browser does not support automatic bookmarks.  Please bookmark us manually.";
  var agt          = navigator.userAgent.toLowerCase();


  if (agt.indexOf("opera") != -1) 
  {
    if (window.opera && window.print)
    {
      return true;
    } else 
    {
      alert(msg_other);
    }
  }    
  else if (agt.indexOf("firefox") != -1) window.sidebar.addPanel(title,url,"");
  else if ((agt.indexOf("msie") != -1) && (parseInt(navigator.appVersion) >=4)) window.external.AddFavorite(url,title); 
  else if (agt.indexOf("netscape") != -1) window.sidebar.addPanel(title,url,"");
  else if (window.sidebar && window.sidebar.addPanel) window.sidebar.addPanel(title,url,""); 
  else alert(msg_other);
}
