// open a new url window

function OpenURLWindow(url)
{
   // create the window
   var features = 'resizable=yes,scrollbars=yes,menubar=yes,location=yes,directories=no,toolbar=yes';
   var newWindow = open(url, 'textureWindow', features);
}