// JavaScript Document

function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
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 il(){
if (document.all){
  document.write('<a href="javascript:history.go(0);" onclick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'http://www.FAQ.com\');">');
  document.write('Make Revenue.com Your Homepage<em>Click Here for Instructions</em></a>');
}
else if (document.getElementById){
  document.write('<a href="http://www.$Domain.com">Make $Domain Your Homepage<em><img src=\'searchome.png\' alt=\'Home image\' /><br />Drag this image over your Home Icon near top left of your Browser</em></a>');
}
else {
  document.write('<b>Press Ctrl+D to Bookmark FAQ</b>');
}
}


function expand(id){
	for(var i=1;i<6;i++){
		if(i==id){
			document.getElementById('box'+i).className='show';
		}else{
			document.getElementById('box'+i).className='hide';
		}
	}
}

function collapse(){
	for(var i=1;i<6;i++){
		document.getElementById('box'+i).className='hide';
	}
}