// JavaScript Document

function reload(form)
{
var val=form.cat.options[form.cat.options.selectedIndex].value; 
self.location='index.php?cat=' + val ;
}
function reload3(form)
{
var val=form.cat.options[form.cat.options.selectedIndex].value; 
var val2=form.subcat.options[form.subcat.options.selectedIndex].value; 

self.location='index.php?cat=' + val + '&cat3=' + val2 ;
}

function display_rows(form)
{
var val=form.cat.options[form.cat.options.selectedIndex].value; 
var val2=form.subcat.options[form.subcat.options.selectedIndex].value; 
var val3 = form.the_year.options[form.the_year.options.selectedIndex].value;
self.location='index.php?cat=' + val + '&cat3=' + val2 + '&the_year=' + val3;

}

function reload4(form)
{
var val=form.cat.options[form.cat.options.selectedIndex].value; 
var val2=form.subcat.options[form.subcat.options.selectedIndex].value; 
var val3 = form.the_year.options[form.the_year.options.selectedIndex].value;
var val4 = form.subcatbodystyle.options[form.subcatbodystyle.options.selectedIndex].value;
self.location='index.php?cat=' + val + '&cat3=' + val2 + '&the_year=' + val3 + '&subcatbodystyle=' + val4;
//self.location='index.php?cat=' + val + '&cat3=' + val2+ '&subcatbodystyle=' + val4 + '&the_year=' + val3 ;

}

