

function PreviousPhoto()
{
  CurrentPhoto--;
  if (CurrentPhoto == 1)
   	document.getElementById("PreviousPhoto").className = "hiddenControl";
  else
   	document.getElementById("PreviousPhoto").className = "";
  if (CurrentPhoto < maxPhoto)
   	document.getElementById("NextPhoto").className = "";
  else
   	document.getElementById("NextPhoto").className = "hiddenControl";
  if ((CurrentPhoto > 1) && (CurrentPhoto < maxPhoto))
   	document.getElementById("PhotoBar").className = "";
  else
   	document.getElementById("PhotoBar").className = "hiddenControl";

 // alert(CurrentPhoto);
 // alert(image);


  link = homelink+"/design/story/photo.php?storyid="+storyid+"&priority="+CurrentPhoto;
//  alert(link);
  ajaxpage(link,'photo');
 Gallery();  
 Thumbnail();
//  link = "design/story/buyphoto.php?storyid="+storyid+"&assetid="+assetid;
  link = homelink +"/design/storypost/buyphoto.php?storyid="+storyid+"&priority="+CurrentPhoto;
// alert(link);

  ajaxpage(link,'buyasset');

}

function NextPhoto()
{
  CurrentPhoto++;
  if (CurrentPhoto == maxPhoto)
   	document.getElementById("NextPhoto").className = "hiddenControl";
  else
   	document.getElementById("NextPhoto").className = "";
  if (CurrentPhoto > 1 )
   	document.getElementById("PreviousPhoto").className = "";
  else
   	document.getElementById("PreviousPhoto").className = "hiddenControl";
  if ((CurrentPhoto > 1) && (CurrentPhoto < maxPhoto))
   	document.getElementById("PhotoBar").className = "";
  else
   	document.getElementById("PhotoBar").className = "hiddenControl";

 // alert(CurrentPhoto);
 // alert(image);
//  storyid = <?php echo $story->storyid;?>;
//  assetid = <?php echo $photoid;?>;
  link = homelink +"/design/story/photo.php?storyid="+storyid+"&priority="+CurrentPhoto;
  //alert(link);
  ajaxpage(link,'photo');
//  link = "design/story/buyphoto.php?storyid="+storyid+"&assetid="+assetid;
  link = homelink+"/design/story/buyphoto.php?storyid="+storyid+"&priority="+CurrentPhoto;
//  alert(link);

  ajaxpage(link,'buyasset');

    Gallery();  
	Thumbnail();


}

function LoadPhoto()
{
//  if (CurrentPhoto == maxPhoto)
//     CurrentPhoto=0;
//link = homelink +"/design/photo/photo.php?storyid="+storyid+"&priority="+CurrentPhoto;


  CurrentPhoto++;
  document.getElementById("PreviousPhoto").className = "hiddenControl";
  if ((CurrentPhoto > 1) && (CurrentPhoto < maxPhoto))
   	document.getElementById("PhotoBar").className = "";
  else
   	document.getElementById("PhotoBar").className = "hiddenControl";
  if (CurrentPhoto == maxPhoto)
   	document.getElementById("NextPhoto").className = "hiddenControl";
  else
   	document.getElementById("NextPhoto").className = "";

  if ( maxPhoto > 1)
   	document.getElementById("phototitle").className = "";
  else
   	document.getElementById("phototitle").className = "hiddenControl";

 // alert(CurrentPhoto);
 // alert(image);
//storyid = <?php echo $story->storyid;?>;
//assetid = <?php echo $photoid;?>;
 link =  homelink +"/design/story/photo.php?storyid="+storyid+"&priority="+CurrentPhoto;
 //alert(link);
 //alert(homelink);

  ajaxpage(link,'photo');
//  link = "design/story/buyphoto.php?storyid="+storyid+"&assetid="+assetid;
  //link = homelink+"/design/storypost/buyphoto.php?storyid="+storyid+"&priority="+CurrentPhoto;
link = homelink +"/design/photo/photo.php?storyid="+storyid+"&priority="+CurrentPhoto;

  //alert(link);

  ajaxpage(link,'buyasset');
  
 // if (maxPhoto > 1)
  {
    Gallery();  
	Thumbnail();
  }
}
function Gallery()
{
  var href = document.getElementById("gallery").href;
  var index = href.indexOf("?");
  if (index > 0)
  {
     href = href.substring(0,index);
  }
 // alert(href);
  href = href + "?storyid="+storyid+"&priority="+CurrentPhoto;
  document.getElementById("gallery").href = href;

  
}
function Thumbnail()
{
  var href = document.getElementById("thumbnails").href;
  var index = href.indexOf("?");
  if (index > 0)
  {
     href = href.substring(0,index);
  }

  href = href + "?t=4&storyid="+storyid+"&priority="+CurrentPhoto;
  document.getElementById("thumbnails").href = href;
}


function LaunchGallery()
{
  var href = document.getElementById("gallery").href;
  window.open(href, 'PhotoGallery', 'width=650,height=650,scrollbars=yes,resizable=yes'); 
  return false;
}
