﻿function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];

	if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; 
	    obj.value = "";
	}
}
function viewInfo(obj,txtvar)
{
document.getElementById(obj).innerHTML = txtvar;	
}

function openurl(url,w,h)
{
if (w == null )
  w = 350;
if (h == null)
  h = 600;
//window.showModalDialog(url,window,"dialogHeight:"+h+"px;dialogWidth:"+w+"px; center: Yes; resizable: Yes; status: No; menubar: yes;  navigationbar: Yes;");
 var newWindow = window.open(url,'comment','resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,width='+w+'px,height='+h+'px,screenX=10,screenY=10,top=10,left=10');
newWindow.focus();
return  false; 
}
function send_mail()
{
var params = 'toMail='+document.getElementById('toMail').value;
params += '&toName='+document.getElementById('toName').value;
params += '&fName='+document.getElementById('fName').value;
params += '&SendMail=ok';


ajax_post('sugest.php',params,'BoxSugest');
}