	function openPopImage(imagePath) { 
		var modalNew = window.open('/viewPic.aspx?imagePath=' + imagePath,'picture','scrollbars=no,height=350,width=604,resizable=no,status=yes,toolbar=no,menubar=no,location=no'); 
		modalNew.focus(); 
	}  
	function openPopFile(imagePath) {
		var modalNew = window.open(imagePath,"picture","scrollbars=no,height=350,width=604,resizable=yes,status=yes,toolbar=no,menubar=no,location=no")
		modalNew.focus();
	}

