﻿
function addcart() {
    var quantity = window.document.getElementById("Quantity").value;
    var netsuiteid = window.document.getElementById("netsuiteid").value;

    var stock = window.document.getElementById("stockspan");
    var location = window.location.toString();

    var a = 1;
    var a = stock.innerHTML;

	if (a>0) { 
		    window.location = "http://shopping.netsuite.com/app/site/query/additemtocart.nl?c=579773&n=1&ext=T&buyid=" + netsuiteid + "&qty=" + quantity + " &redirect="+location+""; 
		}
	else {
		var cf= confirm("This product is showing as out of stock.\r\n\r\nPlease click OK if you wish to add to basket and confirm your understanding that this item will be placed on Back Order\r\n\r\nTo enquire as to an ETA then please call us on 01254 238 749.");
		if (cf==true)
			 {
				   window.location = "http://shopping.netsuite.com/app/site/query/additemtocart.nl?c=579773&n=1&ext=T&buyid=" + netsuiteid + "&qty=" + quantity + " &redirect="+location+"";;
			 }
		}

}

function buynow(netsuiteid) {
   
    var netsuiteid = netsuiteid.toString();
    var location = window.location.toString();
 // alert(location);
   var netsuiteurl = "http://shopping.netsuite.com/app/site/query/additemtocart.nl?c=579773&n=1&ext=T&buyid=" + netsuiteid + "&qty=1&redirect="+location+"";
//alert(netsuiteurl)
   window.location = netsuiteurl;
}

