function ImageOpen(image, width, height, type, style) {
	if (style) {
		var ImageStyle=style;
	} else {
		var ImageStyle='Image';
	}
	height+=100;
	zoom = window.open("/image.php?pic="+image+"&type="+type+"&style="+ImageStyle, "image", 'width = ' + width + ', height = ' + height + ',resizable=0,scrollbars=no,menubar=no,status=no');
}

function WindowClose(){
	self.close();
}

function CheckFeedBackForm(Name, EMail, Question, From){
	if (Name=='') {
		alert('Представьтесь, пожалуйста!');
		return false;
	}

	if (Question=='') {
		alert('Введите свой вопрос, пожалуйста!');
		return false;
	}
	MakeFeedBackWindow(Name, EMail, Question, From);
}

function MakeFeedBackWindow(Name, EMail, Question, From) {
	popupWindow = window.open('/add_feedback.php?_name=' + Name + '&_email=' + EMail + '&_question=' + Question + '&_page=' + From, 'popupWindow', 'width=400, height=100, left=200, top=200, scrollbars=No, resizable=No, status=No, dependent=No, menubar=No');
}

function MakeSubscribeWindow()
{
	var mailURL='i/subscribe.php?';
	for (var i=0; i<document.MainMailForm.elements.length; i++)
	{
		if(document.MainMailForm.elements[i].checked)
		{
			mailURL+=document.MainMailForm.elements[i].name+'='+document.MainMailForm.elements[i].value+'&';
		}
		if(document.MainMailForm.elements[i].type=='text' && document.MainMailForm.elements[i].value!=='')
		{
			mailURL+=document.MainMailForm.elements[i].name+'='+document.MainMailForm.elements[i].value+'&';
		}
	}
	popupWindow = window.open(mailURL, 'popupWindow', 'width=300, height=200, scrollbars=No, resizable=Yes, menubar=No, status=No, dependent=YES');
}
