﻿// JScript File
function openLWAddReview(control){
    if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ 
        myLightWindow.activateWindow({
                        href: control, 
                        title:'',
                        iframeEmbed: true,
                        width:'520px',
                        height:'350px'
        });
    }
    else
    {
        myLightWindow.activateWindow({
                        href: control, 
                        title:'',
                        iframeEmbed: true,
                        width:'520px',
                        height:'540px'
                        
        });
      }
    }
    
    function openLWLogin(productid, pageid){
        myLightWindow.activateWindow({
                        href: '/controls/Review_Login.aspx?ProductId=' + productid + '&PageId=' + pageid, 
                        title:'',
                        iframeEmbed: true,
                        width:'520px',
                        height:'750px'
                        
        });
    }
    
    function UpdatePracImage(ImgPath,ImgID){
    
        var ImgObject = window.parent.document.getElementById(ImgID);
        
        if(ImgObject!=null)
        {
            ImgObject.src = "Admin/Assets/ViewImage.aspx?FileName=" + ImgPath + "&X=210&Y=273&Quality=95";
            ImgObject.style.display = 'inline';
        }
        
        ImgObject = null;

    }