function movepic(img_name,img_src) {
document[img_name].src=img_src;
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=383,height=400,left = 320.5,top = 184');");
}

function delItem(ID) {
  if(confirm("This will remove this item from your basket.")) {
    document.form1.elements["qty_"+ID].value = 0;
    document.form1.submit();
  }
}

function placeOrder() {
  document.form1.place_order.value=1;
  submitForm();
}

function submitForm() {
	document.getElementById('product').submit();
}

function submitFormConfirm() {
	if(confirm("Please note you are preordering this product.\nGoods will be dispatched when they become available.")){
		document.getElementById('product').submit();
	}
}

function currFormat($num) {
//  $num = round($num *100) / 100;
  return sprintf("%01.2f", $num);
}


