


function startPopupTimer(width, height, url)
{
//  console.log('createPopup('+width+ ','+height+')');
  setTimeout('createPopup('+width+ ','+height+', "'+url+'")', 3000);
}

function createPopup(width, height, url)
{
  $.cookie("oiahirlevelpopup", "foo", { expires: 3 });
  $.cookie("oiahirlevelpopup", "foo", { expires: 3, path: '/', domain: 'onlineingatlanakademia.hu' });
  
  
  var embed_find = 'object, embed, .media_embed';
  $(embed_find).hide();
  
  $.colorbox({
	  href: url,
	  width: width,
	  height: height,
	  close: "Bezárás",
	  onClosed: function(){ $(embed_find).show(); }
  });

//  $("#hidden_popup_opener").popupWindow({
//    windowURL: url,
//    windowName: 'Online Ingatlan Akadémia',
//    centerScreen: 1,
//    width: width,
//    height: height,
//    scrollbars: 1,
//    resizable: 1
//  });

//  $("#hidden_popup_opener").click();
}

function submitPopupForm(url)
{
	$("#popupFormButton").attr("value", "Kérem várjon...");

	$.ajax({
	type: "POST",
	url: $("#popupForm").attr('action'),
	data: $("#popupForm").serialize(),
	success: function(data) {
	  $("#cboxLoadedContent div").html(data);
	}
	});

}

