function ValidationNews()
{
var ErrMsg = '';
var flag = true;
if ((document.forms[0].ctlReqInfo_txtName.value.length==0) ||
(document.forms[0].ctlReqInfo_txtName.value==null)||(document.forms[0].ctlReqInfo_txtName.value=='Your Name'))
{
ErrMsg+="Please Enter Name \n";
}
if((document.forms[0].ctlReqInfo_txtEmail.value.length==0) || (document.forms[0].ctlReqInfo_txtEmail.value==null)||(document.forms[0].ctlReqInfo_txtEmail.value=='Email Address'))
{
ErrMsg+="Please Enter E-Mail Address \n";
}
else{
bemail1= new RegExp(/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/);
bemail2 = bemail1.exec(document.forms[0].ctlReqInfo_txtEmail.value);
if(!bemail2)
{
ErrMsg+="Invalid Email Address \n";
}
}
if((document.forms[0].ctlReqInfo_txtComment.value.length==0) || (document.forms[0].ctlReqInfo_txtComment.value==null)||(document.forms[0].ctlReqInfo_txtComment.value=='Comments'))
{
ErrMsg+="Please Enter Comments \n";
}
if (ErrMsg != '')
{
alert(ErrMsg);
flag=false;
return flag;
}
else
{
flag=true;
return flag;
}
}
|
 |
Identifying Target Market for Infomercial Marketing Identifying the Target Market is a major component in effective infomercial marketing. The target market is the group of people who you will aim all your marketing efforts at. The more information and statistics you have about this group, the more precise and effective you can develop your marketing plan. Ways to identify this target market is to consider the segment in terms of demographic, geographic, use-base and the physiographic factors.
|