<!--
	/**
	 * Opens a picture popup
	 * 
	 * This function opens a picture popup window centered in the screen
	 * 
	 * @param		picture				The picture to open
	 * @param		width				The width of the window
	 * @param		height				The height of the window
	 * @return		Void.
	 */
	function openPicture(picture,width,height) {
		
		// X position
		var left = (window.screen.width / 2) - (width / 2 + 10);
		
		// Y position
		var top = (window.screen.height / 2) - (height / 2 + 50);
		
		// Popup parameters
		var wincenter = window.open('/picture.php?src=' + picture,"","width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top + ",toolbar=no,menubar=no,status=yes,scrollbars=no,resizable=no,directories=no");
		
		// Open window
		wincenter.focus();
	}
//-->
