<!-- hide scripting from certain browsers
function verifyupdate() {

   str = 'Are you sure you want to save these changes?';
   if (! confirm(str)) 
   {     
	return(false) 
   }

   return true;
}

function verifydelete() {

   str = 'Are you sure you want to delete this item?';
   if (! confirm(str)) 
   {     
	return(false) 
   }

   return true;
}

function verifycontinue(f) {

   str = 'Are you sure you want to continue and upgrade this price list?';
   if (! confirm(str)) 
   {     
	return(false) 
   }

   return true;
}

function verifychangelinks(f) {

   str = 'Are you sure you want to make changes to these links?';
   if (! confirm(str)) 
   {     
	return(false) 
   }

   return true;
}

function verifypymtchg(f) {

   str = 'Are you sure you want to process this item (credit card details will be cleared also)?';
   if (! confirm(str)) 
   {     
	return(false) 
   }

   return true;
}

function popitup(url,id)
{
	newwindow=window.open(url,id,'height=500,width=750,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus}
}

function popupsub(url,id)
{
      id = "sub" + id;
	newwindow=window.open(url,id,'height=450,width=750,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus}
}

function popstatus(url,id)
{
	newwindow=window.open(url,id,'height=200,width=300,scrollbars=no,resizable=no');
	if (window.focus) {newwindow.focus}
	return true;
}

//-->