function ShowImage(URL,width,height)
{ //v1.0
    
    var now = new Date();
	var winName="image";
	
	window.open(URL,winName+now.getTime().toString(),'scrollbars=0,width='+(parseInt(width)+30).toString()+',height='+(parseInt(height)+30).toString()+',');
}