
 function openWindow(id) {
  var theone = '';
  for (i=0;i<document.forms['order'].guide.length;i++) {
   if (document.forms['order'].guide[i].checked==true) theone += i+',';
  }
  //id = document.forms['order'].guide[theone].value;
  var width = 480;
  var height = 680;
  var x = window.screen.width;
  var y = window.screen.height;
  var left = (x - width) / 2;
  var top = (y - height) / 2;
  var params = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",status=0";
  window.open("order.php?id=" + theone,"order",params); 
 }


 // Changing the form field background
 function FieldFocus(name,color) {
  // If a stupid browser, leave it alone
//  if (document.layers) return;
  // eval("document.forms[0]." + name + ".style.background='" + color + "'");
 }
