//DO THE PAGE FLICK

function formHandler(form){


var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;


}

function pulldown() {


document.write("<form name=form class=red>");

document.write("<select name=site size=1 class=red>");

document.write("<option value=index.html>Home");

document.write("<option value=http://press.emimusic.co.uk>Press Office");

document.write("<option value=artists.htm>Artists");

document.write("<option value=http://www.esounds.com/esounds/en/>Catalogue");

document.write("<option value=comm_markets.htm>B2B");

document.write("<option value=aboutEMIMusicUK.htm>Info");

document.write("<option value=http://www.pro-music.org>Digital");

document.write("<option value=http://www.esounds.com>Esounds.com");

document.write("<option value=international.htm>International");

document.write("<option value=hr.htm>Careers");

document.write("<option value=abbey_rd_studios.htm>Studios");

document.write("<option value=links.htm>Links");

document.write("<option value=faqs.php>FAQs");

document.write("<option value=http://www.emigroup.com>EMI Group");

document.write("<option value=http://press.emimusic.co.uk/>Press");

document.write("<\/select>&nbsp;");

document.write("<input type=button value=View onClick='javascript:formHandler(this)'>");

document.write("<\/form>");



}



