// remove the linkborders 1



function ExplorerFix() { for (a in document.links) document.links[a].onfocus = document.links[a].blur; } if(document.all) document.onmousedown = ExplorerFix;



// no highlighted text

function disableselect(e){

return false

}



function reEnable(){

return true

}



//if IE4+

document.onselectstart=new Function ("return false")



//if NS6

if (window.sidebar){

document.onmousedown=disableselect

document.onclick=reEnable

}



function MM_displayStatusMsg(msgStr) { //v1.0

  status=msgStr;

  document.MM_returnValue = true;

}

	
