//alert('public.js is loaded');

function getBackGround()
{
	var w = screen.width;
	var h = screen.height;
	var image = "";

	if (w<=800)
		image = "800";
	else if (w<=1024)
		image = "1024";
	else if (w<=1280)
		image = "1280";
	else if (w<=1400)
		image = "1400";
	else if (w<=1600)
		image = "1600";

	image = "images/backs/" + image + ".jpg";
	var table = document.getElementById("main_table");
	table.style.backgroundImage = "url('" + image + "')";
	table.style.backgroundRepeat = "no-repeat";
}

getBackGround();

function viewGalleryPhoto(src)
{
	//alert('Функциональность [просмотреть фотографию блока галлереи] пока не реализована.');
	//	return;
	
	width="400";
	height = "300";
	var win = window.open('', '', 'width=' + width + ',height=' + height+',menubar=no,toolbar=no,resizable=no,scrollbars=no,location=no,directory=no,status=no,copyhistory=no');	
	win.document.write('<html><body style="margin:0 0 0 0;" ><img src="' + src + '" alt="" onload="window.resizeTo(this.width, this.height);"/></body></html>');
}

function login()
{
	document.forms.loginForm.submit();	
}

function logout()
{
	document.forms.loginForm._action.value="_logout";
	document.forms.loginForm.submit();
}

function changeImage(img, src)
{
	img.src = src;
}


function goToEditedBlock()
{
	window.location.href +="#block";
}

function setTitle(title)
{
	document.title = title;
}

function goBack()
{
	this.history.go(-1);
}
//*/

