	$(function(){
		$('#dialogwin').dialog({
			width:980,
			height:600,
			autoOpen: false,
			modal: true,
			position:'top',
			bgiframe: true,
			title: this.title
		});
		$('.testlink').click(function(){
			$('#dialogwin').load(this.href, function(){
				$('#dialogwin').dialog('open');
			});
			return false;
		});
		$('.pageload').click(function(){
			$.ajax({
				url: this.href,
				success: function( html ) {
					$('#testcontent').html(html);
				}
			});
			return false;
		});
		$('.testsave').click(function(){
			var name = $(this).attr('name');
			var rel = $(this).attr('rel');
			$('#'+name).hide();
			$('#'+rel).show();
			$.ajax({
				url: this.href,
				type: 'POST',
				data: $('#testform').serialize()
			});
			return false;
		});
	});