﻿// JScript File
var WindowObjectReference = null;
function openPopup(strUrl, strWindowName)
{
  //if(WindowObjectReference == null || WindowObjectReference.closed)
  //{
    WindowObjectReference = window.open(strUrl, strWindowName,
         "resizable=1,scrollbars=1,status=0,width=466,height=500");
  //  WindowObjectReference.moveTo(100,100);
  //}
  //else
  //{
   WindowObjectReference.focus();
  //};
}
//function calcTotal()
//{
//    var price = parseFloat(document.getElementById('ctl00_ContentPlaceHolder1_ItemPrice').innerHTML.replace(",", ""));
//    var quantity = parseFloat(document.getElementById('ctl00$ContentPlaceHolder1$ItemQuantity').value.replace(",", ""));
//    var total = (price * quantity).toFixed(2);
//    //var totalround = Math.round(total*100)/100;
//    document.getElementById('ctl00_ContentPlaceHolder1_ItemTotal').innerHTML = total.toString();
//}
function calcTotal()
{
    var price = parseFloat(document.getElementById('ctl00_MainContent_ItemPrice').innerHTML.replace(",", ""));
    var quantity = parseFloat(document.getElementById('ctl00_MainContent_ItemQuantity').value.replace(",", ""));
    var total = (price * quantity).toFixed(2);
    document.getElementById('ctl00_MainContent_ItemTotal').innerHTML = total.toString();
}
