// Copyright owned by fugjostle & Butty @ Oldskoolanthemz.com

function mySubmit()
{
  //Grab Search Type
  myType = document.gemm.field.value;
  if (myType == "ARTIST")
  {
    document.netsounds.nsdssf.value = "1";
    document.musicstack.search_type.value = "artist"
  }
  if (myType == "TITLE")
  {
    document.netsounds.nsdssf.value = "2";
    document.musicstack.search_type.value = "title"
  }
  if (myType == "LABEL")
  {
    document.netsounds.nsdssf.value = "3";
    document.musicstack.search_type.value = "label"
  }

  //Grab Search Text
  myString = document.gemm.wild.value;
  document.netsounds.nsdsss.value = myString;
  document.musicstack.find.value = myString;

 //submit to the pages  
  document.gemm.submit();
  document.netsounds.submit();
  document.musicstack.submit(); 
}

function enter(nxtField) 
{
  //Dirty bodge to prevent ENTER key just opening Gemm.
  if (window.event && window.event.keyCode == 13)
  {
    nxtField.focus();
    return false;
  } 
  else
  {
    return true; 
  }
}