function changecolor(id, color, textcol) {
    document.getElementById(id).style.color=textcol; 
    document.getElementById(id).style.background=color; 
}
function changecolorback(id, color, textcol) {
    document.getElementById(id).style.color=textcol; 
    document.getElementById(id).style.background=color;
     
}
function bookmarksite(title,url){
    if (window.sidebar) 
    	window.sidebar.addPanel(title, url, ""); // FireFox
    else if(window.opera && window.print){
    	var elem = document.createElement('a');
    	elem.setAttribute('href',url);
    	elem.setAttribute('title',title);
    	elem.setAttribute('rel','sidebar'); // Opera
    	elem.click();
    } 
    else if(document.all)
    	window.external.AddFavorite(url, title); // IE
}