function vi(url, title, width, height) {
  var sw = screen.width - 20;
  var sh = screen.height - 60;
  var scrollbars = "no";

  width=parseInt(width);
  height=parseInt(height);

  if (width <= 0 || height <= 0) return;
  if (sw < width) {
    width *= sw / width;
    scrollbars = "yes";
    height += 38;
  }
  if (sh < height) {
    height *= sh / height;
    scrollbars = "yes";
    if (sw >= width+38 ) {width += 38;}
  }
	var url1=url;
  var new_win = window.open("", "", "resizable=no,scrollbars=" + scrollbars + ",menubar=no,width="+width+",height="+height);
	var html="<html><head><title>" + title + "</title></head><body style=\"padding:0px;margin:0px;\"><img src='"+ url1 +"'/></body></html>";
  new_win.document.write(html);
  new_win.moveTo(50,50);
}

function view_flash(url, title, width, height) {
//	alert(url);
  var sw = screen.width - 20;
  var sh = screen.height - 60;
  var scrollbars = "no";
 	

  if (width <= 0 || height <= 0) return;
  if (sw < width)
  {
    width *= sw / width;
    scrollbars = "yes";
    height += 38;
  }
  if (sh < height)
  {
    height *= sh / height;
    scrollbars = "yes";
    if (sw >= width+38 ) {
	width += 38;
	}
  }

  var new_win = window.open("", "", "resizable=no,scrollbars=" + scrollbars + ",menubar=no,width="+width+",height="+height);
  var html='<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /><title>'+title+'</title></head><body bgcolor="#ffffff" style="padding:0;margin:0;"><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="'+width+'" height="'+height+'" id="flash-view" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+url+'" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#ffffff" /><embed src="'+url+'" menu="false" quality="high" wmode="opaque" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="flash-view" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></body></html>';
  new_win.document.write(html);
  new_win.moveTo(100,100);
}


function SendOk(){
	document.getElementById('msg').innerHTML='Сообщение отправлено. Спасибо!';
}
