<!-- Begin VIEWER OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES FOR THE IMAGE VIEWER

//  use only lowercase on options




// FAQ PAGE OPTIONS

var pad			= "10"		// FAQ PADDING
var leftpad		= "15"		// FAQ LEFT PADDING
var faqwidth		= "90%"		// FAQ ANSWER WIDTH
var faqborder		= "0"		// FAQ BORDER WIDTH
var bordercolor		= "666666"	// FAQ BORDER COLOR




// COPYRIGHT 2010 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE






// FAQ DIV CSS CODE

document.write('<style type="text/css">');
document.write('.faqhide {');
document.write('display: none;');
document.write('width: '+faqwidth+';');
document.write('margin: 0px 0px 0px 0px;');
document.write('padding: '+pad+'px;');
document.write('padding-left: '+leftpad+'px;');
document.write('border: #'+bordercolor+' '+faqborder+'px solid;');
document.write('}');
document.write('</style>');






// FAQ TOGGLE SINGLE DIV

function toggleLayer( whichLayer )
{
  var elem, vis;
  if( document.getElementById )
    elem = document.getElementById( whichLayer );
  else if( document.all )
      elem = document.all[whichLayer];
  else if( document.layers )
    elem = document.layers[whichLayer];
  vis = elem.style;
  if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
    vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
  vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}






// FAQ OPEN ALL DIVS

function openAllDivs(pass) { 
var divs = document.getElementsByTagName('div'); 
for(i=0;i<divs.length;i++){ 
if(divs[i].id.match(pass)){//if they are 'see' divs 
if (document.getElementById) // DOM3 = IE5, NS6 
divs[i].style.display="block";// show/hide 
else 
if (document.layers) // Netscape 4 
document.layers[divs[i]].display = 'block'; 
else // IE 4 
document.all.divs[i].display = 'block'; 
} else { 
if (document.getElementById) 
divs[i].style.display="block"; 
else 
if (document.layers) // Netscape 4 
document.divs[i].display = 'block'; 
else // IE 4 
document.all.divs[i].display = 'block'; 
}
}
}






// FAQ CLOSE ALL DIVS

function closeAllDivs(pass) { 
var divs = document.getElementsByTagName('div'); 
for(i=0;i<divs.length;i++){ 
if(divs[i].id.match(pass)){//if they are 'see' divs 
if (document.getElementById) // DOM3 = IE5, NS6 
divs[i].style.display="none";// show/hide 
else 
if (document.layers) // Netscape 4 
document.layers[divs[i]].display = 'none'; 
else // IE 4 
document.all.divs[i].display = 'none'; 
} else { 
if (document.getElementById) 
divs[i].style.display="none"; 
else 
if (document.layers) // Netscape 4 
document.divs[i].display = 'none'; 
else // IE 4 
document.all.divs[i].display = 'none';
} 
} 
}






// End -->