﻿// JScript File
// display popup window 
// fileName is the content to display in popup window
// usage example: popup("License.aspx");
// Note - window name is an id not a title spaces are not allowed!!!
function popupWin(url,windowName,windowFeatures)
{
  if(windowName==null)
    windowName="popupWindow";
  if(windowFeatures==null)
    windowFeatures="Scrollbars=yes,location=no,width=800,height=600,top=10,left=10";
  newPopupWindow = window.open(url,windowName,windowFeatures);
  //return newPopupWindow;
}

//
// update google Analytics
//
function updateGoogleAnalytics(url) 
{
	if (urchinTracker!=null)
	{
		urchinTracker(url);
	}
}
