// JavaScript Document
function switchbutton(type_to_switch_to) {
	//alert(type_to_switch_to);
	if (type_to_switch_to=="lbl") {
		document.getElementById('labels-required').href = "?action=lblrm" }
	else if (type_to_switch_to=="lblrm"){
		document.getElementById('labels-required').href = "?action=lbl" }
}

function checkbaskettotal(intBasketTotal,checkoutlink){	
	if (intBasketTotal>=100) {
		window.open(checkoutlink);}
	else {
		alert('Minimum order \u00A3100');return false; }	
	
}
