// JavaScript Document
var url_site = 'file:///S:/clients/ADOBE/AdobeLive/site/';

function nextPhoto() {
	var page_name = 'photos';
	var ext_name = '.htm';
	theURL = window.location.href;
	alert(theURL);
	theURL = theURL.replace('', url_site);
	alert(theURL);
	theURL = theURL.replace('', page_name);
	alert(theURL);
	theURL = theURL.replace('', ext_name);
	alert(theURL);
	//window.location = url_site + 
}

function prevPhoto() {
	alert(window.location);
}

