﻿// JScript File
function popupImg(img, l, t, w, h, bloc, bscroll, bmbar, btbar, bresize) {
var windowprops = "location=" + bloc + ",scrollbars=" + bscroll + ",menubar=" + bmbar + ",toolbar=" + btbar + ",resizable=" + bresize + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;

var URL = "" + img;
window.name = '_main';
popup = window.open(URL,"MenuPopup",windowprops);
}

function showBlock(blockId)
{
document.getElementById(blockId).style.display = 'block';
}
function hideBlock(blockId)
{
document.getElementById(blockId).style.display = 'none';
}

function go(url){
    window.location = url;
}