﻿// this is a general javascript util library

//this function is for pop-up windows

function PopUp(sUrl, sName, iWidth, iHeight, iScrollBars, iResizable, iMenuBar, iToolBar, iStatus, iLocation)
{
   window.open (sUrl, sName, "width=" + iWidth + ", height=" + iHeight + ", scrollbars=" + iScrollBars + ", resizable=" + iResizable + ", menubar=" + iMenuBar + ", toolbar=" + iToolBar + ", status=" + iStatus + ", location=" + iLocation);
  
} 