$(function() {
		
	var to_name = $("#to_name"),
		to_email = $("#to_email"),
		from_name = $("#from_name"),
		from_email = $("#from_email"),
		subject = $("#subject"),
		url = $("#url"),
		allFields = $([]).add(to_name).add(to_email).add(from_name).add(from_email).add(subject).add(url),
		tips = $("#validateTips");
		
	$("#dialog").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 375,
		width: 475,
		modal: true,
	});
		
	$('#opendialogbox').click(function() {
		$('#dialog').dialog('open');
	})
});
