// JavaScript Document
function on_select(id,e){
/*	if(e.checked){	
		if(document.getElementById("selectads").value==""){
		document.getElementById("selectads").value=id;
		}else{
		document.getElementById("selectads").value+=","+id;
		}
	}
*/
var selectads=document.getElementById("selectads");
var adsid=selectads.value.split(",");
var str="";
	for(i=0;i<adsid.length;i++){
		if(parseFloat(adsid[i])!=parseFloat(id)){
				if(str==""){
				str=adsid[i];
				}else{
				str+=","+adsid[i];
				}
		}
	}
	if(str.indexOf(id)==-1){
		if(e.checked){
		str+=","+id;
		}
	}
	document.getElementById("selectads").value=str;	
}
function  on_sendid(id){
var ahref=document.getElementById("hiddenURL").value;	
	if(ahref==""){
	ahref=document.getElementById(id).href;
	document.getElementById("hiddenURL").value=ahref;
	}
	var adscode=document.getElementById("selectads").value;
	document.getElementById(id).href=ahref+"adscode="+adscode;
}
function on_submit(){
	var show_length=document.getElementById("hshow_length").value;
	var show_cat=document.getElementById("hshow_cat").value;
	var show_category=document.getElementById("hshow_category").value;
	var selectads=document.getElementById("selectads").value;
	var pid="";
	if(selectads==""){
	alert("กรุณาเลือกสินค้า");
	}else{
	//window.location='website_page_sort.php?pid='+selectads;	
		if(document.frmbrowse.adscode.length){
			for(i=0;i<document.frmbrowse.adscode.length;i++){
				if(document.frmbrowse.adscode[i].checked){
					if(pid==""){
						pid=document.frmbrowse.adscode[i].value;
					}else{
						pid+=","+document.frmbrowse.adscode[i].value;
					}//end if
				}//end if
			}//end for
		}else{
			pid=document.frmbrowse.adscode.value;
		}
	//alert(pid);
	window.location='website_page_sort.php?pid='+pid+'&show_length='+show_length+'&show_cat='+show_cat+'&show_category='+show_category;	
	}
}

function on_action(){
	var show_length=document.getElementById("show_length").value;
	var show_cat=document.getElementById("show_cat").value;
	var show_category=document.getElementById("show_category").value;
	var adscode=document.getElementById("selectads").value;
	window.location='?adscode='+adscode+'&show_length='+show_length+'&show_cat='+show_cat+'&show_category='+show_category;	
}
