function openTestTrackWindow( url ) {
  var sage = window.open( url, 'sageParent', 'status=yes,toolbar=no,scrollbars=yes,resizable=yes,left=0,right=0,location=1' );
  sage.focus();
}

/* Popup Blocker Check */
function checkPop(appName)
{
	var checkPopup = window.open('','','width=1,height=1,left=4000,top=4000,scrollbars=no');

	if (checkPopup != null)
	{
		checkPopup.close();
	}
	else
	{
		alert('It appears your browser is configured to block pop up windows.   In order for \nadministrative systems at the UW to work correctly, you will need to set pop up \nblocking to allow pop ups from the following site:  *.admin.washington.edu\n\nThank you.\n\nTo learn how to configure pop up blocking, type the following address in a new browser window:\n\nhttp://www.washington.edu/research/oris/sagehelp/egc1/popblock.html');
	}
}
