//Function to assign t the value of the Title section of page between the colons
//Like so:  <Title>Rosedale Bible College : DeptName : General</title>
function titletest ()
{		t="";
		t=document.title.toString();
		var c1 = t.indexOf(":")+2;
		var c2 = t.indexOf(":",c1)-1;
		t = t.substring(c1,c2)
		return t;

}

//Call above function
titletest();

if( (t == "Phil Weber"))
{
document.write('<img src="/pweber/sechead.jpg" width=750" height="108" alt="" usemap="#sechead_Map" border="0"></td>'
)
}
else
{ 
document.write('<img src="sechead.jpg" width=750" height="108" alt="" usemap="#sechead_Map" border="0"></td>'
)}

