function setGoAhead(){
	goAhead="false";
}
function clearValue(textBoxObject){
	var content=textBoxObject.value;
	if((content==" Your Username")||(content=="0")||(content==0.0)){
		setGoAhead();
		textBoxObject.value="";
	}
}

function setGoAhead1(){
	goAhead1="false";
}
function clearValue1(textBoxObject){
	var content=textBoxObject.value;
	if((content==" Your Password")||(content=="0")||(content==0.0)){
		setGoAhead1();
		textBoxObject.value="";
	}
}