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 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")
}
 
//new-new linkalert
function rdExitAlert(goURL)  {
  //alert(goURL);
  adjWidth = 500;
  adjHeight = 350;
  //added for IE when opener object cannot be accessed
  //must capture calling URL and pass it
  //var thisURL = window.location.href;
  theWindow=window.open('/rdexit.htm?' + goURL + '','windowName','width=' + adjWidth + ',height=' +      adjHeight + ',top=100,left=100,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no')
  //other approaches to IE problem that failed
  //window.self.name = "callingWindow"; for "target" of exit.htm link
  // Nav 3.0x and IE 3.0x create opener property automatically
  // for older versions, assign it here
  if (navigator.appVersion < 3) {
    if (theWindow.opener == null) {
            theWindow.opener = self;
        }
  }    
}

//new function added by m1wek00 for popupbox
var newwindow;
function popupbox(url)
{
    newwindow=window.open(url, "name","toolbar=no,width=500,height=350,status=no,scrollbars=no,resizable=no");
}