function openWindow(URL) {
var winl = (screen.width - 500) / 2;
var wint = (screen.height - 500) / 2;
winprops = 'height=500,width=600,top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,toolbars=no,menubars=no,status=no'
win = window.open(URL,'newWindow',winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function confirmExit(theURL) {
var msg = "You are now leaving the CCStpa site to connect with another health care resource.  ";
msg += "Please take the time to read the privacy policy at the new Web site.\n\n";
msg += "CCStpa does not control or guarantee the accuracy, completeness or appropriateness of the information, services or resources contained in any other Web site.";
if (confirm(msg)) { window.top.location.href = theURL; }
}
