/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 243 2010-03-15 14:23:14Z emartin24 $
 *
 */

/*
jQuery(function ($) {
	$('#basic-modal .basic').click(function (e) {
		// Display an external page using an iframe
		var src = "http://remax.wedit.fi/agent_details.php";
		$.modal('<iframe src="' + src + '" height="600" width="600" style="border: 0;">', {
			overlayClose:true
		});

		return false;
	});
});
*/

function openModal (url) {
	// Display an external page using an iframe
	var src = url;
	$.modal('<iframe src="' + src + '" height="600" width="600" style="border: 0;" frameborder="0">', {
		overlayClose:true
	});
}
