
 function notLoggedAlert(action) {
  var options = {
    animate:	false,
    modal:		true
  };

  Shadowbox.init(options);

  Shadowbox.open({
    player:     'iframe',
    content:    action,
    height:     220,
    width:      630
  });
 }
 
 function viewAlert(htmlText,h,w) {
  var options = {
    animate:	false,
    modal:		true
  };

  Shadowbox.init(options);

  Shadowbox.open({
    player:     'html',
    content:    "<div align=\"center\" style=\"background-color:#FFFFFF;height:100%;width:100%\">"+htmlText+"</div>",
    height:     h,
    width:      w
  });
 }
 
 function closePopup() {
 	Shadowbox.close();
 }