function newWin(url, fWidth, fHeight)
{
   var curDate = new Date();  
   var winname ="w" + curDate.getTime();
   var props = "width = " + fWidth + ", height =" +  fHeight + ", status = no, toolbar = no, menubar = no, scrollbars = yes";
   nW = open(url, winname, props);
}

