<!--
function pop_up(width, height, url, toolbar) {
if (toolbar) {
window.open(url, "pop1", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",status=no,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
}
else {
window.open(url, "pop1", "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);
}
}
//-->

