﻿// JScript File
function opendialog (url,title1)
{

//$(function(url,title1) {

//		$('a').click(function(e) {
//			e.preventDefault();
//			var $this = $(this);
			var horizontalPadding = 30;
			var verticalPadding = 30;
	        $('<iframe id="externalSite" class="externalSite" src="' + url + '" />').dialog({
	            //title: ($this.attr('title')) ? $this.attr('title') : 'External Site',
	           title:title1,
	            autoOpen: true,
	            width: 750,
	            height:600,
	            modal: true,
	            resizable: false,
				autoResize: true,
			
	            overlay: {
	                opacity: 0.8
	              //  background: "black"
	            }
	        }).width(730 - horizontalPadding).height(620 - verticalPadding);	        
//		});
//	});
	}