// JavaScript Document
function CheckAll(ca, rd)
{
    var AllElement = document.getElementsByTagName("input");
    for(i = 0; i < AllElement.length-1; i++)
    {
        if(AllElement[i].id == rd && AllElement[i].type == "checkbox")
        {
            AllElement[i].checked = ca.checked;
        }
    }
}

function del(){
    var AllElement = document.getElementsByTagName("input");
	var proids="";
    for(i = 0; i < AllElement.length-1; i++)
    {
        if(AllElement[i].type == "checkbox" && AllElement[i].checked && AllElement[i].value!="on")
        {
            proids=proids+AllElement[i].value+"|";
        }
    }
	if(proids==""){
	    alert("You haven't chosen a item!")
		}
	else { 
	  window.location="delbasket.asp?proids="+proids; 
	}
}

function inquiry(){
    var AllElement = document.getElementsByTagName("input");
	var proids="";
    for(i = 0; i < AllElement.length-1; i++)
    {
        if(AllElement[i].type == "checkbox" && AllElement[i].checked && AllElement[i].value!="on")
        {
            proids=proids+AllElement[i].value+",";
        }
    }
	if(proids==""){
	    alert("You haven't chosen a item!")
		}
	else {
	  proids=proids.substring(0,proids.length-1); 
	  window.location="book.asp?proids="+proids; 
	}
}