<!--
function openCMAWindow(URL,winName,features) { 
        
        popup = window.open(URL,winName,features);
  
  //alert(URL)
        
        popup.focus();
        
        popup.document.write(
        "<html>" +
        "<head>" +
        "<title>" + winName + "</title>" +
        "<link rel='stylesheet' href='../global_styles.css' type='text/css'> " +
        "</head>" +
        "<body bgcolor='#ffffff' marginheight='0' marginwidth='0' topmargin='0' leftmargin='0'>" +
        "<img src='" + URL + "'>" +
        "<center><a href='#' onClick='window.close(); return;'><FONT face=Verdana color='#333333' size='2'>Close Window</font></a>" +
        "</center>" +
        "</body>" +
        "</html>"
);

}
//-->
