
document.write('<!--form2-->');
document.write('<FORM name="form2" style="margin:0">');
   
document.write('<SELECT name="contactURLs" size="1" language="javascript" style="width:200px;" onChange="f2(this.selectedIndex);"><option selected>Contact Information</option>');
document.write('<option>---------------------</option>');

document.write('<option>Email</option>');
document.write('<option>Phone Support</option>');

document.write('</SELECT>');

document.write('</FORM>');



<!--
function f2(varItem)
{
switch(varItem)
{
    case 0:
      window.parent.self.status="Goes Nowhere";
      break;
    case 1:
      window.parent.self.status="Goes Nowhere";
      break;
    case 2:
      window.location="/store_c.asp?itemContact=itemContact";
      break;
    case 3:
      window.location="store_c.asp?itemPhoneSupport=itemPhoneSupport";
      break; 
  }
}
// -->

