function OpenJPG (path) {
	var window_style = 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width=700,height=520';
	var new_window = window.open("", "", window_style);
	new_window.document.write ("<html><head></head><body bgcolor='#848484'><center><img src='"+path+"'></center></body></html>");
}
