function isValidEmail(email){
						var validFormatEmail = /[-a-zA-Z0-9_\.]+@[-a-zA-Z0-9]+\.[-a-zA-Z0-9\.]+/;
						var isValid = validFormatEmail.test(email);
						return isValid;
					}
					function fnValidate()
					{
						if(document.frmEmail.cmbCategory.value == "")
						{
							alert("Select the Category ....");
							return false;
						}
						if(document.frmEmail.txtName.value == "" || document.frmEmail.txtName.value == "First Name")
						{
							alert("Enter your name....");
							document.frmEmail.txtName.focus();
							return false;
						}
						if(document.frmEmail.txtEmail.value == "" || document.frmEmail.txtEmail.value == "E-mail" || isValidEmail(document.frmEmail.txtEmail.value) == false )
						{
							alert("Enter your e-mail address....");
							document.frmEmail.txtEmail.focus();
							return false;
						}
					}

					function fnRedirectSubscribe()
					{
						if(fnValidate() != false)
						{
							window.open("","newWin","scrollbars=Auto");
							document.frmEmail.action = "http://207.234.135.244/ezinesystem/ezine/subscribe_action.asp?siteID=2";
							document.frmEmail.submit();
						}
					}

					function fnRedirectUnsubscribe()
					{
						if(fnValidate() != false)
						{
							window.open("","newWin","scrollbars=Auto");
							document.frmEmail.action = "http://207.234.135.244/ezinesystem/ezine/unsubscribe.asp?siteID=2";
							document.frmEmail.submit();
						}
					}


					function ofd1(){
						if (document.frm1.internetstrategies2.value == "0"){
							document.getElementById("internetstrategies1").style.display= 'inline';
							document.frm1.internetstrategies2.value = "1";
							}
							else if(document.frm1.internetstrategies2.value == "1"){
							document.getElementById("internetstrategies1").style.display= 'none';
							document.frm1.internetstrategies2.value = "0";
							}		
					}
					function ofd2(){
						if (document.frm1.copywriting2.value == "0"){
							document.getElementById("copywriting1").style.display= 'inline';
							document.frm1.copywriting2.value = "1";
							}
							else if(document.frm1.copywriting2.value == "1"){
							document.getElementById("copywriting1").style.display= 'none';
							document.frm1.copywriting2.value = "0";
							}		
					}
					function ofd3(){
						if (document.frm1.databackup2.value == "0"){
							document.getElementById("databackup1").style.display= 'inline';
							document.frm1.databackup2.value = "1";
							}
							else if(document.frm1.databackup2.value == "1"){
							document.getElementById("databackup1").style.display= 'none';
							document.frm1.databackup2.value = "0";
							}		
					}
					function ofd4(){
						if (document.frm1.hosting2.value == "0"){
							document.getElementById("hosting1").style.display= 'inline';
							document.frm1.hosting2.value = "1";
							}
							else if(document.frm1.hosting2.value == "1"){
							document.getElementById("hosting1").style.display= 'none';
							document.frm1.hosting2.value = "0";
							}		
					}
					function ofd5(){
						if (document.frm1.buildyourownsite2.value == "0"){
							document.getElementById("buildyourownsite1").style.display= 'inline';
							document.frm1.buildyourownsite2.value = "1";
							}
							else if(document.frm1.buildyourownsite2.value == "1"){
							document.getElementById("buildyourownsite1").style.display= 'none';
							document.frm1.buildyourownsite2.value = "0";
							}		
					}

					function ofd6(){
						if (document.frm1.marketingyourmove2.value == "0"){
							document.getElementById("marketingyourmove1").style.display= 'inline';
							document.frm1.marketingyourmove2.value = "1";
							}
							else if(document.frm1.marketingyourmove2.value == "1"){
							document.getElementById("marketingyourmove1").style.display= 'none';
							document.frm1.marketingyourmove2.value = "0";
							}		
					}

					function ofd7(){
						if (document.frm1.resources2.value == "0"){
							document.getElementById("resources1").style.display= 'inline';
							document.frm1.resources2.value = "1";
							}
							else if(document.frm1.resources2.value == "1"){
							document.getElementById("resources1").style.display= 'none';
							document.frm1.resources2.value = "0";
							}		
					}
					function CheckForm ()
					{
						if (document.frmSiteSearch.search.value=="")
						{
							alert("Please enter at least one keyword to search");
							document.frmSiteSearch.search.focus();
							return false;
						}
						return true
					}