<!--
// Open A New Window
function OpenWin(URL,width,height,scroll)
{
    var Features ="'toolbar=no,location=no,directories=no,status=no,scrollbars="+ scroll +", menubar=no,marginwidth=0,marginheight=0,resizable=yes,width="+ width +",height="+ height +"'";
    var NewWin = window.open(URL,"",Features);
    if (NewWin.opener == null)
	{
        NewWin.opener = self;
    }
}
//-->
