// JavaScript Document

function tojiru() { //v2.0
  window.close();
}

function openBr(theURL) { //v2.0
	//alert(theURL); Delete // when testing
  window.open(theURL,'PhotoGallery','toolbar=yes,scrollbars=yes,resizable=yes,width=530');
}


function PopUpImage(theImage, theH1, theP1, theP2)
{
    var fullurl = "../html/photoGallery.htm?image=" + theImage + "&role=" + theH1 + "&show=" + theP1 + "&with=" + theP2;
    window.open(fullurl,'PhotoGallery','toolbar=yes,scrollbars=yes,resizable=yes,width=530');
}

function getQueryVariable(variable) 
{
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  for (var i=0;i<vars.length;i++) 
  {
    var pair = vars[i].split("=");
    if (pair[0] == variable) 
    {
      return pair[1];
    }
  } 
  alert('Query Variable ' + variable + ' not found');
}

function PopUpMusic(theMusicURL)
{
    window.open(theMusicURL,'Music','toolbar=yes,scrollbars=yes,resizable=yes,width=530');
}
