

function gopage(nbr)
{
	var stg;
	stg = "index.php?content=gallery&pg=" + nbr;
	window.location=stg;
}

   
function loadpage(src,dst)
	{	
		$("#"+ dst).load(src, function(response, status, xhr) {
  if (status == "error") {
    var msg = "Sorry but there was an error: ";
	    $("#" + dst).html(msg + xhr.status + " " + xhr.statusText);
  }
});
	}
 
 
