<!--
function openWindow(url, w, h, loct, locl) {
//open a separate window to show the actual size of the article's pictures 

var options = "width=" + w + ",height=" + h + ",top=" + loct + ",left=" + locl + ",";
options += "resizable=yes,scrollbars=no,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
var newWin = window.open(url, 'newWin', options);
newWin.focus();
}
//-->

<!--
function openWindowPF(url, w, h, loct, locl) {
//open a separate window to show the actual size of the article's pictures 

var options = "width=" + w + ",height=" + h + ",top=" + loct + ",left=" + locl + ",";
options += "resizable=no,scrollbars=yes,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
var newWin = window.open(url, 'newWin', options);
newWin.focus();
}
//-->