$(function(){
	if (document.getElementById('dialog_login')!=null){

		$("#dialog_login").dialog({
			bgiframe: true,
			autoOpen: false,
			height: 270,
			width: 200,
			modal: true,
			buttons: {
				'Entrar': function() {
					$("form[name=dialogForm]").submit();
					$(this).dialog("close");
				},
				'Cerrar': function() {
					$(this).dialog("close");
				}
			}
		});
	}
});

function login() {
	$("#dialog_login").dialog('open');
}


