function smw1(url)
{
res=/\s+/;
urls=url.replace(res,"");
document.location=urls;
return true;
}



function smw(type, url)
{
res=/\s+/;
urls=url.replace(res,"");

if (type==true)
{
ww= window.showModalDialog(urls, "", "border:0; center:yes; dialogheight:550px; dialogwidth:760px; maximize:yes; minimize:yes; resizable:yes;");} 
else 
{
ww= window.open(urls, "", "top=0, left=0, toolbar=0,menubar=no,scrollbars=yes,location=no,status=no, height=500px, width=760px, maximize=yes, minimize=yes, resizable=yes");}
return true;
}
function chkemail(temail)
{
re=/^[\s]*([\w\d-]+(\.[\w\d-]+)*)\@(([\w\d-]+(\.[\w\d-]+)*)\.([\w]{2,3}))[\s]*$/g;
r=temail.replace(re, "$1");
if ((r==temail) && (temail.length>0)) {alert ("Извините, но я сомневаюсь что вы указали email без ошибок."); return false;} else {return true;}
}
