document.writeln('<script language="javascript" type="text/javascript"> ');
document.writeln('<!-- ; ');
document.writeln('function dojump(objSelect) { ');
document.writeln('url = objSelect.options[objSelect.selectedIndex].value; ');
document.writeln('if (url!="") location.href = url;');
document.writeln('} ');
document.writeln('// --> ');
document.writeln('</script> ');
document.writeln('<form name="f1" method="post" action="">');
document.writeln('<select size="1" name="myJumpToBox" onChange="dojump(this)"> ');
document.writeln('<option selected selected>Please Select</option>');
document.writeln('<option value="about/index.htm">> All About Us</option>');
document.writeln('<option value="ourproduct/index.htm">> Our Product</option>');
document.writeln('<option value="ourservices/index.htm">> Our Services</option>');
document.writeln('<option value="partners/index.htm">> Partners</option>');
document.writeln('<option value="pressroom/index.htm">> Press Room</option>');
document.writeln('<option value="onlinemarketing/index.htm">> Online Marketing</option>');
document.writeln('<option value="forum/index.htm">> Forum</option>');
document.writeln('<option value="career/index.htm">> Career</option>');
document.writeln('</select>');
document.writeln('</form>');
