// JavaScript Document

/*

function used for photogallery flash
to direct the user to page to display
the big image of the photo

*/
function testAlert(url){
	
	
	var id;
	//get hidden photogalID from user
	id=document.getElementById("photGalID").value;
	
	
	path=url;
	img=url;
	path=path.replace(/(img[^>]*)/,'');
	//path=path+"/index.cfm/1,115,0,40,html?img="+url + "&pgid=null"+"&lg="+url;
	
	path=path+"/index.cfm/1,115,0,40,html?img="+url+"&id="+id;
	document.location.href=path;
	
}





