function SetHomeDimensions(home)
{
	var w;
	var h;
	if (self.innerHeight) // all except Explorer
	{
		h = self.innerHeight;
		w = self.innerWidth;
		e = false;
	}
	else if (document.documentElement && document.documentElement.clientHeight) // Explorer 6 Strict Mode
	{
		h = document.documentElement.clientHeight;
		w = document.documentElement.clientWidth;			
		e = true;
	}
	else if (document.body) // other Explorers
	{
		w = document.documentElement.clientWidth;	
		h = document.documentElement.clientHeight;
	}
	c = document.getElementById('content');
	c.style.display="block";
//	
	if (!e)
	{
		if (home)
		{
		c.style.marginTop="30px";
		}
	}
	c.style.height=h-190+"px";// = (h/2 - 380/2)  + "px";
	b = document.getElementById('main');
	b.style.marginTop = (h/64)  + "px";

	if (document.getElementById('loader'))
	{
		document.getElementById('loader').style.display="none";
	}
	
}

function SetContentDimensions()
{

	b = document.getElementById('content');
	b.style.width = "746px";
}

function OpenGaleryPic(id)
{
	f = "width=200, height=50,  left=10, top=10, screenX=10, screenY=10, scrollbars=yes, status=yes";
	window.open("/core/app/popupFoto.php?id="+id,"popupFoto",f);
	
}
function OpenGaleryPic2(img)
{
	f = "width=200, height=50,  left=10, top=10, screenX=10, screenY=10, scrollbars=yes, status=yes";
	window.open("/core/app/popupFoto.php?img="+img,"popupFoto",f);
}