$(document).ready(function(){
	$('img.tooltip').tooltip({
		delay: 0,
		showURL: false,
		bodyHandler: function() {
			return $("<img/>").attr("src", $(this).attr('fsrc'));
		}
	});
});
function openWindow(title,address) {
	popupWin = window.open('', 'window', 'width=620,height=620');
	popupWin.document.write('');

	OpenWindow=window.open("", "window", "height=620, width=500,toolbar=no,menubar=no,status=no");
	OpenWindow.document.write('<title>'+title+'</title>');
	OpenWindow.document.write('<body>');
	OpenWindow.document.write('<img src="'+address+'" onclick="window.close()" style="cursor:pointer" />');
	OpenWindow.document.write('</body>');
	OpenWindow.document.write('</html>');
	OpenWindow.document.close();

}
qm_create(0,false,0,500,false,false,false,false,false);