/// This whole file is deprecated.  Please refrain from using it without consulting Cleve.

//These are the js functions for the GCmaterials Website

//Creates popup windows for the product pages

function newWindow(url, windowName, w, h)
{
  var parameters="top=15,left=120,width=" + w + ",height=" + h + ",scrollbars=yes,menubar=no,resizable=yes"
  mywin=window.open(url, windowName, parameters);
  return false;
}  

