




var cookieValue = document.cookie;
var cookieName = "dvuser";



var cookieStartAt = cookieValue.indexOf(" " + cookieName + "=");
if (cookieStartAt == -1)
	{cookieStartAt = cookieValue.indexOf(cookieName + "=");
	}
if (cookieStartAt == -1)
	{cookieValue = null;
	}
else
{
	cookieStartAt = cookieValue.indexOf("=", cookieStartAt);
	var cookieEndAt = cookieValue.indexOf(";", cookieStartAt);
	if (cookieEndAt == -1)
	{
		cookieEndAt = cookieValue.length;
	}
	cookieValue = unescape(cookieValue.substring(cookieStartAt, cookieEndAt));
}

	


if (cookieValue == null|| cookieValue == "")
{
   document.write("<table align='center' border='0' cellpadding='2' cellspacing='0' width='168' bgcolor='#9fc812'>");
   document.write("<TR><TD><FORM name='LoginForm' action='cgi-bin/dv.sh/nfdv-ecom-val.w'>");
   document.write("<div id='Login'> <TABLE width='80%' align='center' border='0'><TR><TD align='center'>");
   document.write("<B><font size='2'>Customer Sign In</font></B><BR><BR>");
   document.write("</TD></TR><TR><TD align='left'>");
   document.write("User ID:</TD></TR><TR><TD align='center'><INPUT id=dvuser tabindex=1 name=dvuser title='username' size='15'></TD></TR><TR><TD align='left'>");
   document.write("Password:</td></TR><TR><TD align='center'><INPUT id=dvpass tabindex=2 name=dvpass type=password size='15'></td></TR><TR><TD align='center'>");
   document.write("<INPUT name=submit1 tabindex=3 type=submit value='Sign In' onclick='ChgPages(document.LoginForm.dvuser.value,document.LoginForm.dvpass.value); '>");
   document.write("<INPUT type=hidden name=PrgName value=nfdv-login2>");
   document.write("<INPUT type=hidden name=HeaderType value=Ecommerce>");
   document.write("<INPUT type=hidden name=SideType value=Ecommerce>");
   document.write("</TD></TR></TABLE></DIV></FORM></TD></TR></table>");

}
 




