/**
* Generate a full scale view of a photo in a new window
*
* @param string szPhoto
* The URL to the photo in full path to the photo in question.
*
* @param string szWidth
* The width of the photo window. 50 pixels will automatically be
* added to this number.
*
* @param string szHeight
* The height of the photo window. 100 pixels will automatically
* be added to this number.
*
* @author Patrick O'Lone <polone@townnews.com>
* @access public
*/
function thumbnailWindow( szPhoto, szWidth, szHeight )
{
	var szParams;

	szParams += "toolbar=no";
	szParams += ",resizable=yes";
	szParams += ",status=no";
	szParams += ",scrollbars=yes";
	szParams += ",menubar=no";
	szParams += ",width=" + (szWidth + 50);
    szParams += ",height="+ (szHeight + 100);

    hWnd = window.open(szPhoto, "thumbnail_window", szParams);
	hWnd.focus();
}
