<!--
function showWindow(width, height, url, toolbar) {
if (toolbar) {
window.open(url, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height);
}
else {
window.open(url, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height);
}
}
//-->