var biggerImageWindow = null;

function openBiggerImage(imageURL, imageDescription, width, height)
{

	if(biggerImageWindow && biggerImageWindow.close)
	biggerImageWindow.close();

	var newWindow = window.open('','largeImage','width=' + width + ',height=' + height + ',menubar=no,status=no,location=no,toolbar=no,scrollbars=no');

	biggerImageWindow = newWindow;

	newWindow.document.write('<html><title>' + imageDescription + '</title><head></head><body style="margin:0">');
	newWindow.document.write('<img alt="' + imageDescription + '" title="' + imageDescription + '" src="');
	newWindow.document.write(imageURL);
	newWindow.document.write('" border="0">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();

	return false;
}


var emailPatern =  /^[^@]+@[^\.]+\..+$/;
function showWin(formObj) {
	if (!(emailPatern.test(formObj.email.value))) {
		alert('Ââåäèòå êîððåêòíûé àäðåñ ýëåêòðîííîé ïî÷òû');
		formObj.email.focus();
		return false;
	}
	subscribe = window.open("","subscribe","width=400,height=300,menubar=no,status=no,location=no,toolbar=no,scrollbars=no");
	if(subscribe.focus() != null) subscribe.focus();
}