// JavaScript Document
	function newWindow(imagejpg, height, width) 
{
		imageWindow = window.open(imagejpg, 'imageWin', 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left = 50,top = 50')
		imageWindow.focus()	
 }
