document.write('<select name="website"  onChange="javascript:getvalues()" style="width:120px;" class="pnkbold">');

// Preformance
if (cat_dd_sel == 1)
	document.write('<option value="pg_wk1p.asp" selected>Performance</option>');
else
	document.write('<option value="pg_wk1p.asp">Performance</option>');
	
// Rehearsal
if (cat_dd_sel == 2)
	document.write('<option value="pg_wk2r.asp" selected>Rehearsal</option>');
else
	document.write('<option value="pg_wk2r.asp">Rehearsal</option>');

// On the sets
if (cat_dd_sel == 3)
	document.write('<option value="pg_sets.asp" selected>On the Set</option>');
else
	document.write('<option value="pg_sets.asp">On the Set</option>');

// Specials
if (cat_dd_sel == 4)
	document.write('<option value="pg_rc.asp" selected>Specials</option>');
else
	document.write('<option value="pg_rc.asp">Specials</option>');

document.write('</select>');

