<!-- Comment out script for old browsers
function open_cnawindow(url, appid,width,height) 
{
if (width == "" || width == null ) {
  width = 600;
}
if (height == "" || height == null ) {
  height = 800;
}

var winl = (screen.width-width )/2;
var wint = (screen.height-height )/2;

m = window.open (url, 'parentWindow'+appid, 'resizable,scrollbars,menubar=no,status=no,toolbar=no,location=no,width=' + width + ',height=' + height + ',top=' + wint + ',left=' + winl ); if (window.focus) { m.focus(); } }
//-->

