// JavaScript Document


function sendband(x,y)
{  
	if (x==4)
	 {
		alert ("please Login To Send Friendship Band!")
			document.login_inner.username.focus();

	 }
	else
	{  
		document.form1.fband.value=y;
		document.form1.submit();		
	}
}

function sendband1(x,y)
{ 
	//alert(x)
		//alert(y)
	if (x==4)
	 {
		alert ("please Login To Send Friendship Band!")
		document.login_inner.username.focus();

	 }
	else
	{ 
	 var comments=document.form2.comments
     if ((comments.value==null)||(comments.value=="")){
		alert("Please Enter Message")
		comments.focus()
		return false
	}
	
		document.form2.fband.value=y;
		document.form2.submit();		
	}
}
