/*======================================================================
   Stores the number of the last report viewed in cookie(1). Used in the
	polygon profiles to know which report to provide a link back to.
====================================================================== */
function storeReportCookie(){
	var thisHREF = document.location.href;
	var thisReport = thisHREF.substring(thisHREF.indexOf("report_"),thisHREF.lastIndexOf("."));
	top.PRIMARY.SetCookie('1',thisReport);
}