// this function is for optical88
//rewirte it to make it can be used by others, later^^
function openwindow(myimage) {
    var _html="";
	_html ="<html><head><title></title></head><body style='margin:0;'>"+"<img src=\""+ myimage +"\" onload=\"window.resizeTo(this.width+40, 600)\" onclick=\"if (confirm('Close this window?')){ self.close();}\" />"+"</body></html>";
	//html ="<html><head><title></title></head><body>"+"Test"+"</body></html>";
	//_html = '\0';
	popup=window.open('', '', 'height=580,width=700,toolbar=0,scrollbars=1,screenX=0,screenY=0,left=0,top=0,resizable=1');
	popup.document.write(_html);
	popup.document.close();
	popup.document.focus();
	
}