//Cache control

function openContactUS()  {
  url = "/stdi/stdicontactus.nsf/comment?Openform"
  var height = 620                       //Set height
  var width = 550                        //Set width
  var name = "winname"             //Set window name
  var top = 20                            //Set distance from top
  var left = 20                            //Set distance from bottom
  newwin=window.open(url, name, "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
}

