﻿// JScript File

// opens a pop up window
function jsfOpenPopUp(strURL,lngWidth,lngHeight)
{
    nWindow=window.open(strURL,'Print','toolbar=no,status=no,menubar=no,scrollbars=yes,width='+lngWidth+',height='+lngHeight+'');
    nWindow.focus();
}

