function switchView(id,img_src) {
	var el = document.getElementById("product_view");
//	if (showing_detail) hideDetail();

	if (id == -1) {
		el.src = img_src;
	} else {
		el.src = global_view_path + id + ".jpg";
	}
}

function checkBasket(form_el) {
    var q_el = form_el.quantity;
	var numeric = /^[0-9\,\.]+$/;
    if (!numeric.test(q_el.value)) {	    
        alert("Invalid Quantity: " + q_el.value);
        return false;
    }
    return true;
    
          
        
}
