// JavaScript Document
function divmsg01(elem,divforgotmsg1)//To Get the x and y coordinates of Anchors
	{
var left = elem.offsetLeft;
	var top = elem.offsetTop;
	var tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		left += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
		}
	tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		top += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
		}

	document.getElementById(divforgotmsg1).style.top ;//Set top of anchor to that of DIV
	document.getElementById(divforgotmsg1).style.left ;//Set left of anchor to that of DIV
	document.getElementById(divforgotmsg1).style.display = "block";
	}
	
function divupdate1(elem,divupdate1b)//To Get the x and y coordinates of Anchors
	{
	
         var left = elem.offsetLeft;
	    var top = elem.offsetTop;
	    var tempEl = elem.offsetParent;
	    while (tempEl != null) 
		    {
		    left += tempEl.offsetLeft;
		    tempEl = tempEl.offsetParent;
		    }
	    tempEl = elem.offsetParent;
	    while (tempEl != null) 
		    {
		    top += tempEl.offsetTop;
		    tempEl = tempEl.offsetParent;
		    }

	    document.getElementById(divupdate1b).style.top ;//Set top of anchor to that of DIV
	    document.getElementById(divupdate1b).style.left ;//Set left of anchor to that of DIV
	    document.getElementById(divupdate1b).style.display = "block";
	 
	}

function divupdate2(elem,divupdate2b)//To Get the x and y coordinates of Anchors
	{
var left = elem.offsetLeft;
	var top = elem.offsetTop;
	var tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		left += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
		}
	tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		top += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
		}

	document.getElementById(divupdate2b).style.top ;//Set top of anchor to that of DIV
	document.getElementById(divupdate2b).style.left ;//Set left of anchor to that of DIV
	document.getElementById(divupdate2b).style.display = "block";
	}

function divupdate3(elem,divupdate3b)//To Get the x and y coordinates of Anchors
	{
var left = elem.offsetLeft;
	var top = elem.offsetTop;
	var tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		left += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
		}
	tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		top += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
		}

	document.getElementById(divupdate3b).style.top ;//Set top of anchor to that of DIV
	document.getElementById(divupdate3b).style.left ;//Set left of anchor to that of DIV
	document.getElementById(divupdate3b).style.display = "block";
	}

function divupdate4(elem,divupdate4b)//To Get the x and y coordinates of Anchors
	{
var left = elem.offsetLeft;
	var top = elem.offsetTop;
	var tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		left += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
		}
	tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		top += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
		}

	document.getElementById(divupdate4b).style.top ;//Set top of anchor to that of DIV
	document.getElementById(divupdate4b).style.left ;//Set left of anchor to that of DIV
	document.getElementById(divupdate4b).style.display = "block";
	}

function leftpaneldiv03(elem,leftpaneldiv3)//To Get the x and y coordinates of Anchors
	{
var left = elem.offsetLeft;
	var top = elem.offsetTop;
	var tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		left += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
		}
	tempEl = elem.offsetParent;
	while (tempEl != null) 
		{
		top += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
		}

	document.getElementById(leftpaneldiv3).style.top ;//Set top of anchor to that of DIV
	document.getElementById(leftpaneldiv3).style.left ;//Set left of anchor to that of DIV
	document.getElementById(leftpaneldiv3).style.display = "block";
	}

function HideContent(d)
 {
if(d.length < 1) 
{ return; }

document.getElementById(d).style.display = "none";

}