function validateAndPostBasket(){
    var str = "";
    if(document.frmBasket.TC.checked == false){
       str += "Please accept the terms and conditions";
    }
	if(str.length > 0){
	   
		alert(str);
    } 
    else{
	   document.frmBasket.submit();
    }
}
