﻿function OpenModalDialog(url,width,height,scrollbars)
{
   var sDialogStyle="height="+height+",width="+width+",resizable=no,scrollbars="+scrollbars+",toolbar=no";
   window.open(url,"",sDialogStyle);
}
function goToCheckout()
{
    window.location.href=_secureUrl + "checkout.aspx";
}
function showMoreInfoDiv(_baseurl)
{
    if(document.getElementById('trTxtDiv2').style.display =='none')
    {
        document.getElementById('trTxtDiv2').style.display='';
        document.getElementById("imgTxtDiv").src=_baseurl+'resources/images/details/iconMoreOn.gif';
    }
     else{document.getElementById('trTxtDiv2').style.display='none';
       document.getElementById("imgTxtDiv").src=_baseurl+'resources/images/details/iconMoreOff.gif';
       }
}