﻿function OpenPopUp123(url,nama)
{
    //var url = "/Default.aspx?Tabid=" + tab;
    var height;
    var width;
    
    if(nama=="RequestQuote")
    {
        height = "420";
        width = "430";
    }
    if(nama=="EmailFile")
    {
        height = "420";
        width = "420";
    }
    if(nama=="RequestPickUp")
    {
        height = "580";
        width = "500";
    }
    if(nama=="RegisterForFTP")
    {
        height = "300";
        width = "300";
    }
    
    //alert(height + "---" + width);
    param = "menubar=0,fullscreen=0,height=" + height +",width=" + width +",menubar=0,resizable=0,scrollbar=0,status=0,toolbar=0";
    window.open(url,nama,param);
    
}
