document.domain = "acasa.ro";

jQuery(document).ready(function() {    
	if(jQuery("#dialog").length == 0){
		var div = jQuery("<div></div>").attr('id','dialog');
		jQuery("body").append(div);
	}
	jQuery("#dialog").dialog({
	       autoOpen: false,
	       position: ['auto', 100],
	       modal: true,
	       resizable: false,
	       height: 450,
	       width: 580,
	       close: function() {
	       	if(jQuery("#redirect_url").val() != '' && jQuery("#redirect_url").val() != null){
	       			window.location.href= jQuery("#redirect_url").val();
	       	}
	       }
	   });

});

function showDialog(src, title, width, height)
{
	if(title != null){
		jQuery("#dialog").dialog('option', 'title', title);
	}
	
	if (width) jQuery("#dialog").dialog('option', 'width', width);
	
	if (height) jQuery("#dialog").dialog('option', 'height', height);
	
	jQuery("#dialog").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />').dialog("open");
    jQuery("#modalIframeId").attr("src", src);
    
    return false;
}
