<!--//
var tz = "";

//===========================================
function show(pic,w,h,ttl) {
//===========================================
//===========================================
	w1 = w + 40;
	h1 = h + 60;
	if (typeof(tz)=='object') tz.close();
	tz=window.open('','pw','width='+w1+',height='+h1+',status=no,left='+(screen.width-w1)/2+',top='+(screen.height-h1)/2+',toolbar=no,menubar=no,resizable=no,scrollbars=no');
	tz.document.open();
	tz.document.write('<html><title>'+ttl+'</title><link rel=stylesheet type="text/css" href="'+base+'css/style.css"><body onload="self.focus();"><div align=center style="margin:20px;"><a href="javascript:window.close()"><img src="'+base+'data/'+pic+'" border=0 alt="Закрыть"></a>');
	//tz.document.write('<html><title>'+ttl+'</title><link rel=stylesheet type="text/css" href="'+base+'css/style.css"><body onload="self.focus();"><div align=center style="margin:20px;"><a href="javascript:window.close()"><img src="'+base+'data/'+pic+'" border=0 alt="Закрыть" width='+w+' height='+h+'></a>');
	tz.document.write('<p><br><a href="javascript:self.print();">Распечатать</a></p>');
	tz.document.write('</body></html>');
	tz.document.close();
}

//===========================================
function check(content) {
//===========================================
//  Проверка заполненности полей формы
//===========================================
	if(content=="") return true;
	if(content=="news"){
		check_fld=new Array ("dt","title");
		check_hdr=new Array ("Дата","Заголовок");
	}
	if(content=="concert"){
		check_fld=new Array ("place","descr");
		check_hdr=new Array ("Место","Описание");
	}
	if(content=="back") {
		check_fld=new Array ("person","phone","text");
		check_hdr=new Array ("ФИО","Телефон","Ваше сообщение");
	}

  // проверка заполнения полей формы 
	for ( i = 0; i <= check_fld.length-1; i++) {
		if (isEmpty(document.getElementById(check_fld[i]).value)) {
			alert('Не заполнено обязательное поле "'+check_hdr[i]+'".');
			document.getElementById(check_fld[i]).focus();
			return false;
		}
	}
	return true;
}


//===========================================
function isEmpty(str) {
//===========================================
// проверка элемента формы на заполненность
//===========================================
	for (var i = 0; i < str.length; i++)
		if (" " != str.charAt(i))
			return false;
	return true;
}

//===========================================
function ShowText(id) {
//===========================================
//===========================================
	w = 450;
	h = 500;
	if (typeof(wt)=='object') wt.close();
	wt=window.open(base+"showtext.phtml?text="+id,"wtext","width="+w+",height="+h+",status=no,left="+(screen.width-w)/2+",top="+(screen.height-h)/2+",toolbar=no,menubar=no,resizable=1,scrollbars=1");
	//return false;
}

//-->
 