function open_l(name) {


 		//elem = eval("document.all."+name);
		if (document.getElementById(name)!=null)
		{
 		elem = document.getElementById(name);
		if (elem.style.display == "none" || !elem.style.display) {
			elem.style.display = "block";
		} else {
			elem.style.display = "none";
		}
		}
	}

	var winH;
	var winW;
	var winUrl;
	var winProp;
	var scrol;

function popUpOpen (winUrl, winW, winH)
{
//функция открывает заданный файл в заданных размерах окна
		scrol = 1;
		winProp = "toolbar=0,resizable=0,fullscreen=0,scrollbars="+scrol+",left=50,top=50,height="+winH+",width="+winW;
		window.open(winUrl,'',winProp);
}
function new_win(w,h,title)
{
	w1=window.open('',title,'resizable=no,menubar=no,status=no,scrollbars=yes,width='+w+',height='+h);

}

function popup(w,h,title)
{
	w1=window.open('',title,'resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h);

}

