﻿
function ShowPopupImage(myimage) {
	html = "<html><head><title>perspectives Coaching</title></head><body style='margin:20px' onBlur='self.focus()'><img src='" + myimage + "' style='border:0px;' name='image' onload='window.resizeTo(document.image.width+50,document.image.height+95)'></body></html>";
	popup=window.open ('','image','width=10,height=10,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popup.document.open();
	popup.document.write(html);
	popup.document.focus();
	popup.document.close()
}
