// JavaScript Document

function showImage(strFileName, txtHeight, txtWidth) {
	 window.open(strFileName, 'Picture', 'height='+txtHeight+',width='+txtWidth+',resizable');
};