function windowHeight()
{
	var h = 0;

	//IE
	if(!window.innerWidth)
	{
		//strict mode
		if(!(document.documentElement.clientWidth == 0))
		{
			h = document.documentElement.clientHeight;
		}
		//quirks mode
		else
		{
			h = document.body.clientHeight;
		}
	}
	//w3c
	else
	{
		h = window.innerHeight;
	}
	h = h - 100;
	return h;
}

function windowWidth()
{
	var w = 0;

	//IE
	if(!window.innerWidth)
	{
		//strict mode
		if(!(document.documentElement.clientWidth == 0))
		{
			w = document.documentElement.clientWidth;
		}
		//quirks mode
		else
		{
			w = document.body.clientWidth;
		}
	}
	//w3c
	else
	{
		w = window.innerWidth;
	}
	w = w - 100;
	return w;
}

function showGal(gallery,thumbnail) {
  var h = windowHeight();
  var w = windowWidth();
  if (thumbnail==null) {
  document.write("<p align=\"center\"><font size=4><a href=\"http://rayandlaura.com/index_frames.php?gallery=" + gallery + "&keepThis=true&TB_iframe=true&height=" + h + "&width=" + w + "\" class=\"thickbox\">&raquo; Show Gallery &laquo;</a></font></p>");
  } else {
  document.write("<p align=\"center\"><font size=2><a href=\"http://rayandlaura.com/g.php?gallery=" + gallery + "&keepThis=true&TB_iframe=true&height=" + h + "&width=" + w + "\" class=\"thickbox\"><img src=\"" + thumbnail + "\" border=\"0\" /><br>&raquo; Show Gallery &laquo;</a></font></p>");
  }
}

function showGall(gallery,thumbnail) {
  var h = windowHeight();
  var w = windowWidth();
  if (thumbnail==null) {
  document.write("<p align=\"center\"><font size=4><a href=\"http://rayandlaura.com/g.php?gallery=" + gallery + "&keepThis=true&TB_iframe=true&height=" + h + "&width=" + w + "\" class=\"thickbox\">&raquo; Show Gallery &laquo;</a></font></p>");
  } else {
  document.write("<p align=\"center\"><font size=2><a href=\"http://rayandlaura.com/g.php?gallery=" + gallery + "&keepThis=true&TB_iframe=true&height=" + h + "&width=" + w + "\" class=\"thickbox\"><img src=\"http://rayandlaura.com/b/uploads/Galleries/" + gallery + "/preview/" + thumbnail + ".Th.jpg\" border=\"0\" /><br>&raquo; Show Gallery &laquo;</a></font></p>");
  }
}