var panel = null; $(document).ready( function(){ panel = new cmsPanel( {"width":500}); }); function filterType(category,businesstype,id) { var url = "" if(businesstype!='') url = baseUrl1()+"c/"+category+"?businesstype="+businesstype+"&order="+id else url = baseUrl1()+"c/"+category+"?order="+id; window.location.href= url; } function baseUrl1() { var url = window.location.href; var pos = url.indexOf('c/'); return url.substr(0, pos ); }