if (navigator.childWin == null)
{
   navigator.childWin = new Array();
}
var childWin = navigator.childWin;

function showCaseTrackerPdf(aform, appid) {
	var id = 'showcasetrackerpdf';
	aform.target=id;
	aform.appid.value=appid;
	var rules = 'menubar=no, toolbar=no,directories=no,location=no,scrollbars=no,status=yes,copyhistory=0, height=700,width=700,left=300,top=10';
	window.open("", id, rules);
	aform.submit();
	return;
}

function showFinancialReviewPdf(aform, listIndex) {
	var id = 'showfinancialreviewpdf';
	aform.target=id;
	aform.fr_file_list_index.value=listIndex;
	var rules = 'menubar=no, toolbar=no,directories=no,location=no,scrollbars=no,status=yes,copyhistory=0, height=700,width=700,left=300,top=10';
	window.open("", id, rules);
	aform.submit();
	return;
}


function showTimeout(url)
{
	showChild('Timer', url, 'dependent=yes,resizable=no,width=400,height=400,screenX=0,screenY=0,left=0,top=0,titlebar=yes,scrollbars=no');
}



function showChild(ID, ChildHTMLFile, Rules)
{
  if (!Rules)
    childWin[ID] = window.open(ChildHTMLFile,ID,'dependent=yes,resizable=yes,width=640,height=500,screenX=0,screenY=0,left=0,top=0,titlebar=yes,scrollbars=yes');
  else
    childWin[ID] = window.open(ChildHTMLFile,ID,Rules);
	
  return childWin[ID];
}
