// JavaScript Document
<!-- Works to open a popup window
function popUpWindow(URLStr, left, top, width, height)
{
window.open(URLStr, 'popUpWin', 'scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top+'');
}
//-->