function ChangeQuantity(FormName, Quantity) {
	document.forms["Qty" + FormName].elements["Quantity" + FormName].value = Quantity;
	document.forms["Qty" + FormName].submit();
  }
  
function confirm_message(intItem,intPrice)
{
 var strPrice
 if (intPrice >= 9.99)
 {
  strPrice = "between \xA3250 - \xA3500"
 }
 else
 {
  strPrice = "as much as \xA3250"
 }
 strPrice = "up to \xA3400"
 
 if (intPrice >= 11.99)
 {
    where_to = confirm("Are you sure you want to remove insurance?\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\nRemove insurance from the basket?");
 }
 else 
 {
    where_to = confirm("Are you sure you want to remove insurance?\nDid you know that a mobile phone is stolen every minute?*\n\nPlease note that the cost to replace this USB Modem and laptop  could  be " + strPrice + ".\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\n\n* Source: Mobile News November 2003\n\nRemove insurance from the basket?");
 }                  
 
 if (where_to== true)
 {
   return true;
   //window.location="RemoveFromBasket.asp?ItemKey=" + intItem;
 }
 else
 {
  return false;
    }
  }

function confirm_message_new(intItem,intPrice,intProd)
{
 
	var strPrice;

  	if (intPrice >= 9.99)
 	{
 	strPrice = "between \xA3250 - \xA3500"
 	} 
 	else
 	{
 	strPrice = "as much as \xA3250"
 	}
 	 strPrice = "up to \xA3400"
  
 	if (intPrice >= 11.99)
 	 	{
			if(intProd ==1) 
			{
					  
			where_to = confirm("Are you sure you want to remove insurance?\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\nRemove insurance from the basket?");
			
			}
 		
			if(intProd == 2) 
			{

			where_to = confirm("Are you sure you want to remove insurance?\nDid you know that a mobile phone is stolen every minute?*\n\nPlease note that the cost to replace this USB Modem and laptop  could  be " + strPrice + ".\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\n\n* Source: Mobile News November 2003\n\nRemove insurance from the basket?");
			  
			}
 		 	
			 if(intProd == 3) 
			 {
			 
			 where_to = confirm("Are you sure you want to remove insurance?\nDid you know that a mobile phone is stolen every minute?*\n\nPlease note that the cost to replace this USB Modem and laptop  could  be " + strPrice + ".\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\n\n* Source: Mobile News November 2003\n\nRemove insurance from the basket?");
					   
			}
		}

	else
			{
					if(intProd ==1) 
					{
							  
					where_to = confirm("Are you sure you want to remove insurance?\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\nRemove insurance from the basket?");
					
					}
				
					if(intProd == 2) 
					{

					where_to = confirm("Are you sure you want to remove insurance?\nDid you know that a mobile phone is stolen every minute?*\n\nPlease note that the cost to replace this USB Modem and laptop  could  be " + strPrice + ".\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\n\n* Source: Mobile News November 2003\n\nRemove insurance from the basket?");
					  
					}
					
					 if(intProd == 3) 
					 {
					 
					 where_to = confirm("Are you sure you want to remove insurance?\nDid you know that a mobile phone is stolen every minute?*\n\nPlease note that the cost to replace this USB Modem and laptop  could  be " + strPrice + ".\nRemember, you are under no obligation and have the right to cancel\nat any time by calling our Customer Services line on 0844 871 0515.\n\n* Source: Mobile News November 2003\n\nRemove insurance from the basket?");
							   
					}

			}
 		
 		  if (where_to== true)
			  {
				return true;

			  }
			  else
			  {
			   return false;
			  }
  
}

