﻿function listenItem(objID)
{
    $("#probox_"+objID).mouseout(function(){
    	$("#probox_"+objID).removeClass("productboxcheck");
    });
    $("#probox_"+objID).mouseover(function(){
    	$("#probox_"+objID).addClass("productboxcheck");
    });
    $("#ID_"+objID).click(function(){
	    if($("#ID_"+objID).attr("checked")){
		    $("#probox_"+objID).addClass("productboxchecked");
	    }else{
		    $("#probox_"+objID).removeClass("productboxchecked");
	    }
    });
}

function ChangePageSize(obj,objform)
{
    objform.Page.value="1";
    objform.PageSize.value=obj.options[obj.options.selectedIndex].value;
    objform.submit();
}

