function ShowPicWindow(file, width, height, protect)
{
	var newWindow;
	var htmlPage = "image-viewer.php?pic="+ file +"&w="+ width +"&h="+height +"&p="+protect;
	newWindow = window.open(htmlPage,'','top=20,left=20,height='+height+',width='+width+',toolbar=no,minimize=no,status=no,memubar=no,location=no,scrollbars=auto');
}
function showPicAlbum(id)
{
	document.location.href='album.php?id='+id;
}
