// JavaScript Document
<!-- 
// PLEASE DO NOT REMOVE THIS. THANKS 
// FIND GREATE JAVASCRIPT CODES AT http://www.wallpaperama.com 
var state = 'block'; 

function showhide(layer_ref,bullet) { 
//alert(document.getElementById(layer_ref).style.display);
if(document.getElementById(layer_ref).style.display == 'block'){
	state = 'none'; 
}else if(document.getElementById(layer_ref).style.display == 'none'){
	state = 'block'; 
}
var bullet = (bullet != 'undefined') ? bullet : '';

/*Bullet Change*/
if(bullet != ''){
	var docimage = document.getElementById(bullet);
	var imagelocation = docimage.src.split('/');
	var bulletpath = '';
	for(i = 0; i < imagelocation.length; i++){
		bulletpath+= (i == 0) ? 'http:' : '';
		bulletpath+= (i < (imagelocation.length-1) && i != 0) ? '/'+imagelocation[i] : '';
	}
	var nrl = bulletpath+'/faq-bullet-nrl.png';
	var ovr = bulletpath+'/faq-bullet-ovr.png';
	docimage.src = (docimage.src == nrl) ? ovr : nrl;
}
/*e-Of Bullet Change*/

if (document.all) { //IS IE 4 or 5 (or 6 beta) 
	eval( "document.all." + layer_ref + ".style.display = state"); 
} 
	if (document.layers) { //IS NETSCAPE 4 or below 
		document.layers[layer_ref].display = state; 
	} 
	if (document.getElementById && !document.all) { 
		maxwell_smart = document.getElementById(layer_ref); 
		maxwell_smart.style.display = state; 
	}
//alert(document.getElementById(layer_ref).style.display);
} 
//--> 