function showModal(html)
{
	
	$.modal('<iframe  width="320" height="320" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'+html+'"></iframe>', {
		onOpen: function (dialog) {
		dialog.overlay.fadeIn('slow', function () {
			dialog.container.slideDown('slow', function () {
				dialog.data.fadeIn('slow');
			});
		});
	},
	onClose: function (dialog) {
		dialog.data.fadeOut('slow', function () {
			dialog.container.slideUp('slow', function () {
				dialog.overlay.fadeOut('slow', function () {
					$.modal.close(); // must call this!
				});
			});
		});
	},
	containerCss:{
		backgroundColor: "#333333",
		borderWidth: "8px",
		borderStyle: "solid",
		borderColor: "#444444",
		padding: "12px",		
		height:320,
		width:320,
		color: "#000",
		fontFamily: "Lucida Grande",
		fontSize: ".9em",
		paddingBottom: "4px",
		borderRadius: "1em"
	},
	
	closeClass: "modal-close"
	
	});
}

function showModalDiv(selector)
{
		$.modal($(selector), {
			onOpen: function (dialog) {
			dialog.overlay.fadeIn('slow', function () {
				dialog.container.slideDown('slow', function () {
					dialog.data.fadeIn('slow');
				});
			});
		},
		onClose: function (dialog) {
			dialog.data.fadeOut('slow', function () {
				dialog.container.slideUp('slow', function () {
					dialog.overlay.fadeOut('slow', function () {
						$.modal.close(); // must call this!
					});
				});
			});
		},
		containerCss:{
			backgroundColor: "#333333",
			borderWidth: "8px",
			borderStyle: "solid",
			borderColor: "#444444",
			padding: "12px",		
			height:135,
			width:225,
			color: "#000",
			fontFamily: "Lucida Grande",
			fontSize: ".9em",
			paddingBottom: "4px",
			borderRadius: "1em"
		},
		
		closeClass: "modal-close"
		
		});
	
}