function pulldown_menu()
{
var url = document.pulldown.selectname.options[document.pulldown.selectname.selectedIndex].value
window.location.href = url 
}

function pop(theUrl)
{
reWin=window.open(theUrl,'rocky','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=275,height=350,top=20,left=20')
}

function pop2(theUrl)
{
reWin=window.open(theUrl,'rocky','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=275,height=350,top=20,left=20')
}

function greyBox(title,text,url)
{
document.write('<table border=0 cellpadding=0 cellspacing=0 width=148 bgcolor="#ebebeb">');
document.write('<tr bgcolor="#61CDF3"><td width=5><img src="../img/common/bluetop1.gif" alt=""></td>');
document.write('<td width=138 valign="middle"><font color="#ffffff"><b>');
document.write(title);
document.write('</b></font></td><td width=5><img src="../img/common/bluetop2.gif" alt=""></td></tr>');
document.write('<tr>');
document.write('<td width=5 bgcolor="#ebebeb">&nbsp;</td>');
document.write('<td width=128 valign="top" bgcolor="#ebebeb"><br>');
document.write(text);
document.write('<br><a href="');
document.write(url);
document.write('"><img src="../img/knappar/more.gif" border=0></a>');
document.write('</td>');
document.write('<td width=5 bgcolor="#ebebeb">&nbsp;</td></tr>');
document.write('<tr><td colspan=3 width=148 bgcolor="#ffffff"><img src="../img/common/digitalnews_bottom.gif" alt=""></td>');
document.write('</tr>');
document.write('</table>');
}