<!-- 
function cr()
{
stroka=document.mlist.mail.value; ind=stroka.indexOf('\@');
if (ind>0 && ind<stroka.length-1)
{
c_m= open("", "c_m", "width=350,height=100");
c_m.focus();
c_m.document.open();
c_m.document.write("<html><head><title>Подождите секундочку...</title></head>");
c_m.document.write("<body background=images/background.gif>");
c_m.document.write("<table width=100% height=100% align=center cellspacing=1 cellpadding=1 bgcolor=000000><tr><td align=center bgcolor=eeeeee><font face=verdana size=2 color=000080>Идёт подписка...</font></td></tr></table></body></html>");
c_m.document.close();
document.mlist.submit();
}
else
{
alert('Вы ввели некорректный e-mail адрес');
}
}

function bc(b,bg){  b.style.backgroundColor = bg;}
function open_win(win_file, win_title) {
window.open(win_file, win_title, 'resizable=yes,width=400,height=600,toolbar=no,scrollbars=yes,location=no,menubar=no,status=no');
}
//-->