/*show - make bookmark */
function make_bookmark(title,url) 
        { 
        	if (window.sidebar) { 
        	       	 window.sidebar.addPanel(title, url,"");
        	} else if( window.opera && window.print ) { 
        			    var mbm = document.createElement('a');
        			    mbm.setAttribute('rel','sidebar');
        			    mbm.setAttribute('href',url);
        			    mbm.setAttribute('title',title);
        			    mbm.click();
        	} else if( document.all ) { 
        	    		window.external.AddFavorite( url, title); 
        	} 
        }
/*show - hide copy */
function $(a) { return document.getElementById(a); }
function extendParagraph() {
	$("extended_copy").style.display = "block";
    $("show_more_link").innerHTML = ""
}
function hideParagraph() {
	$("extended_copy").style.display = "none";
    $("show_more_link").innerHTML = "more"
}

/* ie6 fix flicker images no matter what settings are for temporary internet files */
try {
 document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}