function showText(){
	var textBoxEmail=document.getElementById("LoginEmailID");
	textBoxEmail.value="E-mail";
	var textBoxLoginPassword=document.getElementById("LoginPassword");
	textBoxLoginPassword.value="Password";
}
function removePassword(){
var textBoxName=document.getElementById("LoginPassword");
	if(textBoxName.value=="Password"){
  	textBoxName.value="";	
	}
}
function changePassword()
{
		var textBoxName=document.getElementById("LoginPassword");
		if(textBoxName.value.length<=7){
	  	textBoxName.value="Password";	
	}
		
}
//Remove E-Mail on blur from the text box
function removeText(){
var textBoxName=document.getElementById("LoginEmailID");
	if(textBoxName.value=="E-mail"){
  	textBoxName.value="";	
	}
}
function changeText(){
var textBoxName=document.getElementById("LoginEmailID");
	//alert(textBoxName.value.length);
	if(textBoxName.value.length<=7){
	  	textBoxName.value="E-mail";	
	}
	
}

