// JavaScript Document

<!--
function OpenWindow(strURL,strWidth,strHeight)
{
    /* open a new browser window based on info passed to the function */ 
    window.open(strURL,"","Width=" + strWidth + ",Height=" + strHeight,0);
}
//-->

