/*  *   Copyright 2004 Bendy Music Version 1.00.0000  *  *   f0_newWindow calls a new browser window that pops up on top of the site  */   function f0_newWindow( ps_url, ps_id, ps_attributes )   {      if( ps_attributes == null )      {         ps_attributes = "location='yes',menubar='yes',resizable='no',top='10',left='10',scrollbars='yes',status='yes',titlebar='yes',toolbar='yes'";      }      var ps_id = window.open(ps_url, ps_id, ps_attributes);      if( ps_id!=null ) ps_id.focus();   }
