/* Report navigation javascript */

function rvs_report_nav_print(Rpt,ProgID,EpisodeID)
{
	if( document.location.pathname )
		var url = document.location.pathname +'?page=print_report&p='+ProgID;
	else
		var url = '/?page=print_report&p='+ProgID;
	if( EpisodeID )
		url += '&e='+EpisodeID;
	url += '&report='+Rpt;
	var todayDate = new Date(); // Make the window name random so the user can open as many as they want
	var newWindow = window.open( url, "pdf" + todayDate.getTime(), [ "toolbar=no, location=no, directories=no,scrollbars=yes, status=no, menubar=no, resizable=yes, width=700, height=500, left=30, top=30" ] )
}


function rvs_report_nav_pdf(Rpt,ProgID,EpisodeID)
{
	if( document.location.pathname )
		var url = document.location.pathname +'report.pdf?page=pdf_report&p='+ProgID;
	else
		var url = '/report.pdf?page=pdf_report&p='+ProgID;
	if( EpisodeID )
		url += '&e='+EpisodeID;
	url += '&report='+Rpt;
	var todayDate = new Date(); // Make the window name random so the user can open as many as they want
	var newWindow = window.open( url, "pdf" + todayDate.getTime(), [ "toolbar=no, location=no, directories=no,scrollbars=no, status=no, menubar=no, resizable=yes, width=700, height=500, left=30, top=30" ] )
}
