function godropdown(name) {
var f = eval("document.forms['quick-links-form']."+name);
var go = f.options[f.selectedIndex].value;
//if (go) window.location.href = go;
	if (go) {
	window.open(go);
	f.options.selectedIndex = 0;
	}
}

function openimg(imgid) {
window.open('imgpopup.html?imgid='+imgid,'fotogalery','width=600,height=600')
return true;
}

function tabswitch(o) {
pn = o.parentNode;
o = pn.nextSibling;
	if (!o) return false;
	if (o.nodeType == 3) o = o.nextSibling;
	if (pn.id == 'b-search') to = 'a-search';
		else to = 'b-search';
pn.className = 'tab sel';
o.className = 'sel';
document.getElementById(to).className = 'tab';
r = document.getElementById(to).nextSibling;
	if (r.nodeType == 3) r = r.nextSibling;
r.className = 'hide';
return true;
}

