// JavaScript Document
function show_popup(filename)
{
	var wholeURL = new String(location.href);
	//alert(wholeURL);	// TEMP
	var fileLoc = wholeURL.lastIndexOf("/") + 1;
	//alert(fileLoc);	// TEMP
	var fileURL = wholeURL.slice(0,fileLoc) + filename;
	//alert(fileURL);	// TEMP
	
	window.open(fileURL,'_blank','height=400,location=no,menubar=no,resizable=yes,status=no,toolbar=no,width=300');
}

function show_tour(filename)
{
	var wholeURL = new String(location.href);
	//alert(wholeURL);	// TEMP
	var fileLoc = wholeURL.lastIndexOf("/") + 1;
	//alert(fileLoc);	// TEMP
	var fileURL = wholeURL.slice(0,fileLoc) + filename;
	//alert(fileURL);	// TEMP
	
	window.open(fileURL,'_blank','height=630,location=no,menubar=no,resizable=yes,status=no,toolbar=no,width=554');
}