/**************************** 
    OPEN WINDOW FUNCTION
	Author: Todd Cawthron
	Loud Dog Corporation
*****************************/

//function open_link(url, width, height, name, location, scrollbars, resizable) {
function open_link(url, width, height) {
  // width, height, name, location and scrollbars are optional
  //
  // Pop up a new window named LoudDog with a default size of 685 x 480
  // window name of LoudDog and no location bar.


  var namenum = Math.round(Math.random() * 10000);
  if (width      == null) width=680;
  if (height     == null) height=450;
  var name="ClearBead" + namenum;
  var location='no';
  var scrollbars='no';
  var resizable='no';
  var opts="menubar=no,toolbar=no,scrollbars=" + scrollbars + ",resizable=" + resizable + ",fullsize=no,width="
           + width + ",height=" + height + ",location=no";

  winref=window.open(url,name,opts);
  winref.focus();
}