﻿$(document).ready(function() {
	$('a.smPopImg').click(function(e) {
		e.preventDefault();
		ModalBoxImg($(this).attr('href'));
	});
});
function ModalBoxAjax(href) {
	$.get(href,'',ModalBoxAjax_Callback,'html');
}
function ModalBoxIFrame(href,w,h) { 
	ModalBoxShow('<iframe src="'+href+'" width="'+w+'px" height="'+h+'" />');
}
function ModalBoxImg(imgloc) {
	var im = new Image();
	im.onload = function() { ModalBoxShowImg('<img src="'+imgloc+'" />',im.width,im.height);}
	im.src = imgloc;
}
function ModalBoxShow(html) {
	$.modal(html, {
		closeHTML: '',
		overlayClose: true,
		autoResize: true,
		onOpen: function(dialog) { 
			dialog.overlay.fadeIn('fast', function() { 
				dialog.container.fadeIn('fast', function() { 
					dialog.data.fadeIn('fast');
				});
			});
		}
	});
}
function ModalBoxShowImg(html,w,h) {
	$.modal(html, {
		overlayClose: true,
		autoResize: true,
		minWidth: w,
		minHeight: h,
		onOpen: function(dialog) { 
			dialog.overlay.fadeIn('fast', function() { 
				dialog.container.fadeIn('fast', function() { 
					dialog.data.fadeIn('fast', function() {
						$('div.close').show();
					}); 
				});
			}); 
		}
	});  		
}
