function submitform()
{
  document.orderform.submit();
}

function SimpleSwap(el,which)
{
  el.src=el.getAttribute(which || "offsrc");
}

function SimpleSwapSetup()
{
  var x = document.getElementsByTagName("img");

  for (var i=0; i < x.length; i++)
  {
    var onsrc = x[i].getAttribute("onsrc");
    if (!onsrc) continue;
      
    x[i].onsrc_img = new Image();
    x[i].onsrc_img.src=onsrc;
    x[i].onmouseover = new Function("SimpleSwap(this,'onsrc');");
    x[i].onmouseout = new Function("SimpleSwap(this);");
    x[i].setAttribute("offsrc",x[i].src);
  }
}

var PreSimpleSwapOnload = (window.onload)? window.onload : function(){};

window.onload = function()
{
  PreSimpleSwapOnload();
  SimpleSwapSetup();
}

