<!--
// PLEASE DO NOT REMOVE THIS. THANKS
// FIND GREATE JAVASCRIPT CODES AT http://www.wallpaperama.com
var state = 'hidden';
function showhide(layer_ref) {
if (state == 'visible') {
state = 'hidden';
sizeH = '0px';
overflow1 = 'hidden';
}
else {
state = 'visible';
sizeH = '116px';
overflow1 = 'visible';
}
if (document.all) { //IS IE 4 or 5 (or 6 beta)
eval( "document.all." + layer_ref + ".style.visibility = state");
eval( "document.all." + layer_ref + ".style.height = sizeH");
eval( "document.all." + layer_ref + ".style.overflow = overflow1");
}
if (document.layers) { //IS NETSCAPE 4 or below
document.layers[layer_ref].visibility = state;
document.layers[layer_ref].height = sizeH;
document.layers[layer_ref].overflow = overflow1;
}
if (document.getElementById && !document.all) {
maxwell_smart = document.getElementById(layer_ref);
maxwell_smart.style.visibility = state;
maxwell_smart.style.height = sizeH;
maxwell_smart.style.overflow = overflow1;
}
}

var state2 = 'hidden';
function showhide2(layer_ref) {
if (state2 == 'visible') {
state2 = 'hidden';
sizeH = '0px';
overflow1 = 'hidden';
}
else {
state2 = 'visible';
sizeH = '87px';
overflow1 = 'visible';
}
if (document.all) { //IS IE 4 or 5 (or 6 beta)
eval( "document.all." + layer_ref + ".style.visibility = state2");
eval( "document.all." + layer_ref + ".style.height = sizeH");
eval( "document.all." + layer_ref + ".style.overflow = overflow1");
}
if (document.layers) { //IS NETSCAPE 4 or below
document.layers[layer_ref].visibility = state2;
document.layers[layer_ref].height = sizeH;
document.layers[layer_ref].overflow = overflow1;
}
if (document.getElementById && !document.all) {
maxwell_smart = document.getElementById(layer_ref);
maxwell_smart.style.visibility = state2;
maxwell_smart.style.height = sizeH;
maxwell_smart.style.overflow = overflow1;
}
}
//-->