function newslettersubscribe1(){
document.nlform.submit();
}

/*///

function newslettersubscribe2(){
document.nlform2.submit();
}

*/
function login1(){
document.loginform1.submit();
}

function login2(){
document.loginform2.submit();
}

function contactus(){
	cansubmit=0;
if(""==document.forms.enqform.enqtxtfullname.value)
{
alert("Please enter your name and surname");
document.forms.enqform.enqtxtfullname.focus()
cansubmit=1;
}

if(cansubmit==0){
if(""==document.forms.enqform.enqtxtemail.value)
{
alert("Please enter your email");
document.forms.enqform.enqtxtemail.focus()
cansubmit=1;
}
}


if(cansubmit==0){
if(""==document.forms.enqform.enqtxtmessage.value)
{
alert("Please enter your message");
document.forms.enqform.enqtxtmessage.focus()
cansubmit=1;
}
}

	
if(cansubmit==0){	
document.enqform.submit();
}

}

function newslettersubscribe2(){
	cansubmit=0;
if(""==document.forms.nlform2.nltxtname.value)
{
alert("Please enter your name and surname");
document.forms.nlform2.nltxtname.focus()
cansubmit=1;
}

if(cansubmit==0){
if(""==document.forms.nlform2.nltxtemail.value)
{
alert("Please enter your email");
document.forms.nlform2.nltxtemail.focus()
cansubmit=1;
}
}

	
if(cansubmit==0){	
document.nlform2.submit();
}

}





function dosub(){
cansubmit=0;
if(""==document.forms.articleuploadform.txtarticlename.value)
{
alert("Please enter article name");
document.forms.articleuploadform.txtarticlename.focus()
cansubmit=1;
}

if(cansubmit==0)
document.articleuploadform.submit();

}
function pr(){
document.prform.submit();
}
