// JavaScript Document
function changename1()
{
	
		if (document.signup.text.value == "")
		{
			document.signup.text.value = "Enter you email id here";
			//alert ("type text");
			}
}
function changename2()
{
	
		 if (document.signup.text.value == "Enter you email id here")
		{
			document.signup.text.value = "";
		}
	
}


// Private Parties

function fullname1()
{
	
		if (document.privateparties.names.value == "")
		{
			document.privateparties.names.value = "* Name :";
			//alert ("type text");
			}
}
function fullname2()
{
	
		 if (document.privateparties.names.value == "* Name :")
		{
			document.privateparties.names.value = "";
		}
	
}


function emailtext1()
{
	
		if (document.privateparties.email.value == "")
		{
			document.privateparties.email.value = "* E-Mail :";
			//alert ("type text");
			}
}
function emailtext2()
{
	
		 if (document.privateparties.email.value == "* E-Mail :")
		{
			document.privateparties.email.value = "";
		}
	
}



function telephonetext1()
{
	
		if (document.privateparties.telephone.value == "")
		{
			document.privateparties.telephone.value = "Telephone :";
			//alert ("type text");
			}
}
function telephonetext2()
{
	
		 if (document.privateparties.telephone.value == "Telephone :")
		{
			document.privateparties.telephone.value = "";
		}
	
}


function commentstext1()
{
	
		if (document.privateparties.comments.value == "")
		{
			document.privateparties.comments.value = "Comments :";
			//alert ("type text");
			}
}
function commentstext2()
{
	
		 if (document.privateparties.comments.value == "Comments :")
		{
			document.privateparties.comments.value = "";
		}
	
}