function OpenSite()
{
	var screenwidth = screen.width;
	var screenheight = screen.height;
	
	var winwidth = 1000;
	var winheight = 590;
	
	var left = (screenwidth-winwidth)/2;
	var top = (screenheight-winheight)/2;
	
	var prefs = "width=" + winwidth + ",height=" + winheight + ",left=" + left + ",top=" + top + ",scrollbars=yes";
	
	window.open("about.html", "TMH", prefs);
}

function TV4Life()
{
	var thumb = new Thumb(127985, "myThumb");
	thumb.setSize(140, 180);
	thumb.draw();
}