﻿function toggleInline(t) {
var x = document.getElementById(t).style;
if (x.display == 'inline-block') x.display = 'none';
else x.display = 'inline-block';
return false;
} 

function toggleshop(t) {
var x = document.getElementById(t).style;
if (x.display == '') x.display = 'none';
else x.display = '';
return false;
} 

function shopshow(t) {
var x = document.getElementById(t).style;
x.display = '';
return false;
}

function shophide(t) {
var x = document.getElementById(t).style;
x.display = 'none';
return false;
} 
 
function showinfo(t) {
var x = document.getElementById(t).style;
x.display = 'inline-block';
return false;
}

function hideinfo(t) {
var x = document.getElementById(t).style;
x.display = 'none';
return false;
} 
 