function ar()
{
var c1=0,c2=0,c3=0;
var msg="";
var temp
var n,msg2="";
var n=1;
var msg1="The following conditions must be satisfied\n";
msg1+="_________________________\n";
if(document.art.author.value=="")
{
msg2=msg2+"\n"+n+".  Your name must be filled.";
n=n+1;
}
if(document.art.email.value=="")
{
msg2=msg2+"\n"+n+".  Email id must be filled.";
n=n+1;
}
if(document.art.email.value!="")
	{
		var f=document.art.email.value;
		
		for(var i=0;i<f.length;i++)
		{
			temp=f.charAt(i)
			if(temp=="@")
			{
				temp=c1;
				c1=c1+1;
			}
			else if(temp==".")
			{
				temp=c2;
				c2=c2+1;
			}
			else if(temp=="")
			{
				temp=c3;
				c3=c3+1;
			}
		}
		if((c1!=1)||(c2<1)||(c3>0))
		{
			msg2=msg2+"\n"+n+".  Email id must be a correct format.";
n=n+1;
}}
if(document.art.title.value=="")
{
msg2=msg2+"\n"+n+".  Article title must be filled.";
n=n+1;
}
if(document.art.title.length>75)
{
msg2=msg2+"\n"+n+".  Title should not exceed more than 75 charecters.";
n=n+1;
}
if(document.art.message.value=="")
{
msg2=msg2+"\n"+n+".  Article message must be filled.";
n=n+1;
}
if(msg2=="")
{
document.art.submit();
}
else
{
msg3="The following conditions must be satisfied..";
msg3+="\n__________________________________\n";
alert(msg3+msg2);
}
}
function rep()
{
var c1=0,c2=0,c3=0;
var msg="";
var temp
var n,msg2="";
var n=1;
var msg1="The following conditions must be satisfied\n";
msg1+="_________________________\n";
if(document.reply.name.value=="")
{
msg2=msg2+"\n"+n+".  Your name must be filled.";
n=n+1;
}
if(document.reply.email.value=="")
{
msg2=msg2+"\n"+n+".  Email id must be filled.";
n=n+1;
}
if(document.reply.email.value!="")
	{
		var f=document.reply.email.value;
		
		for(var i=0;i<f.length;i++)
		{
			temp=f.charAt(i)
			if(temp=="@")
			{
				temp=c1;
				c1=c1+1;
			}
			else if(temp==".")
			{
				temp=c2;
				c2=c2+1;
			}
			else if(temp=="")
			{
				temp=c3;
				c3=c3+1;
			}
		}
		if((c1!=1)||(c2<1)||(c3>0))
		{
			msg2=msg2+"\n"+n+".  Email id must be a correct format.";
n=n+1;
}}
if(document.reply.title.value=="")
{
msg2=msg2+"\n"+n+".  Reply title must be filled.";
n=n+1;
}
if(document.reply.title.length>75)
{
msg2=msg2+"\n"+n+". Reply Title should not exceed more than 75 charecters.";
n=n+1;
}
if(document.reply.message.value=="")
{
msg2=msg2+"\n"+n+".  Reply message must be filled.";
n=n+1;
}
if(msg2=="")
{
document.reply.submit();
}
else
{
msg3="The following conditions must be satisfied..";
msg3+="\n__________________________________\n";
alert(msg3+msg2);
}
}
function sea()
{
if(document.search.searchval.value=="")
alert("Please enter any text");
else
document.search.submit();
}

function print(id)
{
window.open("print.asp?msgid="+id,"print","height=300,width=750,scrollbars=yes")
}
function mail(id)
{
window.open("mail.asp?msgid="+id,"print","height=300,width=450")
}

