function OpenPhotoWindow( strPage, intWidth, intHeight )
{
	var c;
	
	c = Math.round(Math.random()*100);

	window.open( strPage, 'hwyh' + c, 'width=' + intWidth + ',height=' + intHeight + ',resizable=yes,scrollbars=yes' );
	
	return (true);
}