function profilerSession(SessionID) {
var ckyDate = new Date;
ckyDate.setDate(ckyDate.getDate( ) + 30);
document.cookie = "profilerSession=" + SessionID + "; expires=" + ckyDate.toGMTString( ) + ";"; }

function readSession() { 
	var nameEQ = "profilerSession="; 
	var ca = document.cookie.split(';'); 
		for(var i=0;i < ca.length;i++) 
			{ var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); 
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } 
	return "FALSE"; }

var profilerSessionValue = "FALSE";
if (document.cookie) profilerSessionValue = readSession();

document.write("<div id='content area'></div>");
document.write("<s" + "cript language='javascript' src='profiler/suggestPages_inside.asp?HREF=" + document.location.href + "&TITLE=" + document.title + "&PLINK=" + profilerCookieValue + "&PSESS=" + profilerSessionValue + "'></sc" + "ript>");