/**
* View orignal photo in a new window
*
* @param string windowURL
* The URL to the photo in full path to the photo in question.
*
* @param string windowWidth
* The width of the photo window. 20px will automatically be added to this number.
*
* @param string windowHeight
* The height of the photo window. 75px will automatically be added to this number.
*
*/
function photoWindow( windowURL, windowWidth, windowHeight )
{
	var windowParams;

	windowParams += "toolbar=no";
	windowParams += ",resizable=yes";
	windowParams += ",status=no";
	windowParams += ",scrollbars=yes";
	windowParams += ",menubar=no";
	windowParams += ",width=" + (windowWidth + 20);
    windowParams += ",height="+ (windowHeight + 75);

    hWnd = window.open(windowURL, "thumbnail_window", windowParams);
	hWnd.focus();
}

