/*
 * 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 $
 *
 */

function initjq(country,state,city,selectedHid){

		var src = "/Maps/cutimaps.html?country=" + country + "&state=" + state + "&city=" + city + "&id=" + selectedHid;
		$.modal('<iframe id="mapsframe" src="' + src + '" height="600px" width="1000px" frameborder="0" style="border:0;scrolling:no;">', {
		
		closeHTML:"<div align='right'><a href='#'> Close </a></div>",
			containerCss:{
				backgroundColor:"#fff",
				borderColor:"#fff",
				height:600,
				padding:0,
				width:1000
			},
			overlayClose:true
		});

		return false;

}

