function run_movie(swf,w,h) 
{ 
text = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + w + "\" height=\"" + h + "\">\r\n";
text+= "<param name=\"allowScriptAccess\" value=\"always\">\r\n";
text+="<param name=\"movie\" value=\"" + swf + "\">\r\n";
text+="<param name=\"menu\" value=\"false\">\r\n";
text+="<param name=\"quality\" value=\"high\">\r\n";
text+="<param name=\"bgcolor\" value=\"#ffffff\">\r\n";
text+="<param name=\"wmode\" value=\"opaque\">\r\n";
text+="<param name=\"name\" value=\"ulito\">\r\n";
text+="<embed src=\"" + swf + "\" quality=\"high\" name=ulito swLiveConnect=true wmode=opaque pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + w + "\" height=\"" + h + "\" menu=\"false\" bgcolor=\"#ffffff\" allowScriptAccess=\"always\">\r\n";
text+="</object>\r\n";

document.write(text);
return 1;
}
function validateform() //validate customer information
{

if (document.form1.username.value=="")
{
alert("Введите Ваше имя!");
return false;
}
if (document.form1.email.value=="")
{
alert("Введите Ваш e-mail!");
return false;
}
if (document.form1.info.value=="")
{
alert("Введите Ваш вопрос!");
return false;
}

return true;
};