function checkCookie(){
var cookieFound = false;
var start = 0;
var end = 0;
var cookieString = document.cookie;
var i = 0;
var name="wellcookie"
// SCAN THE COOKIE FOR name
while (i <= cookieString.length) {
	start = i;
	end = start + name.length;
	if (cookieString.substring(start,end) == name) {
		cookieFound = true;
		break;
	}
	i++;
}

// IS name FOUND?
if (cookieFound) {
	window.location="home.htm";
	returnValue=false;
}
else{
	document.cookie = "wellcookie=noindex";
}
}

function newWindow() {
		openMap = window.open('lost_pswd.html', 'pswd_window', 'width=300,height=200')
	}
	
	// end hiding -->
 
