function myPopup(addr,w,h) {
	if(addr.indexOf(".jpg")!=-1) {
		var generator=window.open('', 'Preview', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+w+',height='+h);
		generator.document.write('<html><head><title>FAR-audio image preview</title>');
		generator.document.write('</head><body style="margin: 0;padding: 0;">');
		generator.document.write('<img src="'+addr+'" border="0">');
		generator.document.write('</body></html>');
		generator.document.close();
	} else {
		window.open(addr, 'Preview', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=auto,resizable=yes,width='+w+',height='+h);
	}
	return false;
}