function opWin(src,w,h,sc){
	var feat = 'width='+w+',height='+h;
	if(sc == 'y') feat+= ',scrollbars=yes';
	nWinn = window.open(src,'pwin',feat);
	nWinn.focus();
}

function goNow(form){
	var formIndex = form.cat.selectedIndex;
	if(form.cat.options[formIndex].value.length>0) window.location = form.cat.options[formIndex].value;
}

function setH(){
	navH = document.getElementById('nav').offsetHeight;
	bodH = document.getElementById('bod').offsetHeight;
	if(bodH<navH) document.getElementById('bod').style.height=navH+'px';
}

function setH2(){
	document.getElementById('archive').style.height=document.getElementById('bod').offsetHeight+'px';
}