/***********************************************
* Script functions to display large photos
************************************************/

function ShowLargeImage( imagePath )
{
	//alert('Test:' + imagePath );
	PopUp('DisplayLargeImage.aspx?path=' + imagePath);
}	

function PopUp(strURL,intWidth,intHeight)
{
	/*************************************************
	* Open pop up window *
	**************************************************/
	if (typeof(intWidth) == "undefined")
	{
		//Default
		intWidth = 500;
	}
	if (typeof(intHeight) == "undefined")
	{
		//Default
		intHeight = 500;
	}
	intLeft = (screen.width) ? (screen.width-intWidth)/2 : 0;
	intTop = (screen.height) ? (screen.height-intHeight)/2 : 0;
	strProps = "left=400, top=" + intTop + ", left=" + intLeft + ", height=" + intHeight + ",width=" + intWidth + ", location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";	
	objWindow = window.open(strURL,"",strProps);
	objWindow.opener = self;
}

