function WallyShowFaq(no){
if(!(no >= 0))
return false;

var x = 1;
while(
(obj = document.getElementById('Wally-faq'+x)) &&
(typeof(obj) != 'undefined') &&
(typeof(obj.style) != 'undefined')
){
if(x == no){
obj.style.display = 'block';
obj.style.width = '750px';
obj.style.height = 'auto';
}else{
obj.style.display = 'none';
}

x++;
}
return false;
}