// JavaScript Document

function compairCheckedItems(  cPath ){

		//alert( "here we are" );
		var chkd = document.listform.compareChk;
		var count = 0;
		var idlist = "";
		
		for(var i=0; i<chkd.length; i++){
		
			//alert( chkd[i].value );
			if( chkd[i].checked && count < 10 ){
				if( count == 0 ){
					idlist = chkd[i].value;
				}else{
					idlist = idlist + ","+chkd[i].value;
				}
				count++;
			}
		}
		
		if( count < 1 ){
			alert( "You must select two or three items to compare." );
			//window.location="index.php?cPath="+cPath;
		}else{
			window.location="/claycart/product_compare.php?cPath="+cPath+"&pids="+idlist;
		}

}
