function confirmDel()
{
    if(!window.confirm('Are you sure you want to delete this item from the Cart?'))
        return false;    
}

function jumpup(url)
{   
    var objNew = new Object();
    // menubar=yes,directories=yes,scrollbars=yes,titlebar=yes,toolbar=yes,status=yes,resizable=yes,location=yes,
    objNew = window.open(url,'_blank','scrollbars=yes,titlebar=yes,left=50,top=50,height=300,width=500');
    objNew.focus();

}

