<!-- Generic drop down selection list navigation -->
<!-- Amazon -->
function urlLinks()
{
document.location.href=document.urlList.url.value;
return false;
}
<!-- Generic drop down selection list navigation -->
<!-- Stats -->
function urlStatsLinks()
{
document.location.href=document.urlStatsList.urlStats.value;
return false;
}
<!-- Form focus and select -->
<!-- Code snippet viewer -->
function giveFocus(aForm) {
//selects text in the codesnippet textarea
aForm.codesnippet.select()
return true
}