﻿
function PreviewWindow(src)
{
    window.open("/GetPreview.aspx?src=" + src, "_blank", "menubar=no");
}


function nahled(src)
{
	window.open("/GetPreview.aspx?src=" + src, "_blank", "menubar=no");
}

function getElementHeight(oElement) {
    var height = 0;
    
    while (oElement != null) {
        height += oElement.offsetTop;
        oElement = oElement.offsetParent;
    }
    
    return height;
}