// JavaScript Document
function testlinkalert(url)  {
  adjWidth = 600;
  adjHeight = 450;
  var newURL = url.replace(/&/g, "%26"); //replace comma with code for ampersand
  var thisURL = newURL;
  theWindow=window.open('/generalinfo/foia/usr_agrmt.cfm?url=' + thisURL + '','windowName','width=' + adjWidth + ',height=' +      adjHeight + ',top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no')
}

function open_new_win(url)  {
    newWindow = window.open(url,"SubForm","toolbar=no,width=500,height=350,top=100,left=100,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no")
  }  
