﻿// JScript File
function openLWAddReview(productid, pageid){
    if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ 
        myLightWindow.activateWindow({
                        href: '/controls/Review_Add.aspx?ProductId=' + productid + '&PageId=' + pageid, 
                        title:'',
                        iframeEmbed: true,
                        width:'520px',
                        height:'350px'
        });
    }
    else
    {
        myLightWindow.activateWindow({
                        href: '/controls/Review_Add.aspx?ProductId=' + productid + '&PageId=' + pageid, 
                        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'
                        
        });
    }
    
