function launchPhotoSized(image, width, height)
{
    window.open("photo.php?image=" + image + "&width=" + width + "&height=" + height, "MediaPlayer", "status=0,toolbar=0,location=0,menubar=0,resizeable=0,scrollbars=0,width=" + width + ",height=" + height);
}

function launchPhoto(image, width, height)
{
    window.open("photo.php?image=" + image + "&width=" + width + "&height=" + height, "MediaPlayer", "status=0,toolbar=0,location=0,menubar=0,resizeable=1,scrollbars=1");
}