function addToShopCart(Iname,Inum,amount) {
var nFeatures = 'menubar=no, stats=no, titlebar=no, toolbar=no, scrollbars=yes, resizable=yes';
var height = 250;
var width  = 800;
var nUrl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_cart&business=nilacharal%40hotmail.com&add=1&';
nUrl = nUrl +'item_name=' + Iname +'&item_number=' +Inum+'&amount='+amount;
nFeatures = nFeatures + ',height='+ height +',width=' + width;
var xWin = window.open(nUrl,'paypal',nFeatures);
}

function viewShopCart() {
var nFeatures = 'menubar=no, stats=no, titlebar=no, toolbar=no, scrollbars=yes, resizable=yes';
var height = 250;
var width  = 800;
var nUrl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_cart&business=nilacharal%40hotmail.com&display=1&';
nFeatures = nFeatures + ',height='+ height +',width=' + width;
var xWin = window.open(nUrl,'paypal',nFeatures);
}

