function exitalert(url)  {
  adjWidth = 500;
  adjHeight = 350;
  var thisURL = encodeURIComponent(url);
  theWindow=window.open('/exit_win_new.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 testlinkalert2()  {
  adjWidth = 500;
  adjHeight = 350;
  var thisURL = window.location.href;
  theWindow=window.open('exitw_test.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")
} 