// JavaScript Document

function popup(url, width, height)
{
	newwindow=window.open(url, 'slippers', 'width='+(width+30)+',height='+(height+63)+',toolbar=no,location=no,status=no,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function OpenWin(url, width, height)
{
	newwindow=window.open(url, 'slippers', 'width='+width+',height='+height+',toolbar=no,location=no,status=no,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
}

function submitcategory() {
	document.category.method = "post";
	document.category.action = "your-hosts.php?photogallery=" + document.category.category.value + "#photogallery";
	document.category.submit();
}

function changephoto(gallery, photo, photocaption) {
	
	//re = ;
	//newcaption = photocaption.replace(re, "'");
	
	var newstr = photocaption.replace("'","\'");
	
	document.getElementById('photo').src = "photogalleries/" + gallery + "/photos/" + photo;
	document.getElementById('caption').innerHTML = newstr;	
	return false;
}