﻿function ChangeImage(element, imagename)
{
    element.style.backgroundImage = "url(images/menu/" + imagename + ")";
}


function OpenWindow(url, width, height)
{
 window.open(url,"openedwindow","location=1,status=0,scrollbars=0,width=" + width + ",height=" + height + "");
}