function viewImageInWindow(imageName, windowH, windowW, imageH, imageW) {
    var listOfFeatures = 'toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, width=' + windowW + ', height=' + windowH;
    // var imageWindow = window.open("popup.html", "ImageWindow", listOfFeatures);
    var imageWindow = window.open("", "ImageWindow", listOfFeatures);
    imageWindow.moveTo(10,10);
    //var anImage = imageWindow.document.getElementById('image');
    //anImage.src = 'images/' + imageName;
    //anImage.height = imageH;
    //anImage.width = imageW;

    imageWindow.document.write('<center><a href=# onclick=window.print();return true;>Print / Печатать</a><br /><img src=./images/' + imageName + ' width=' + imageW + 'height=' + imageH + ' /></center>');
}

function m_sfcon (username, domain) {
    pre = "mail";
    url = pre + "to:" + username;
    document.location.href = url + "@" + domain;
}

