// JavaScript Document

function infoBox(url, w, h) {
			var tempX = w;
			var tempY = h;
			xPos = (screen.availWidth/2)-(tempX/2);
			yPos = (screen.availHeight/2)-(tempY/2);
            eWindow = window.open(url,'popupPicture','width='+w+',height='+h+',menubar=no,scrollbars=0,resizable=0, top='+yPos+',left='+xPos+'')
    		
	        eWindow.focus()
} 

