TIMEZONE = tz;
TIME_STAMP = new Date(today);
onBodyLoadGeneric();
+
if (toggle) {
this.toggle("#div_srh", false);
}
}});
}
+ jQuery.fn.dispPos = function () {
+ this.css("position","absolute");
+ this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight())-320 ) +
+ $(window).scrollTop()) + "px");
+ this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 6) - 100 +
+ $(window).scrollLeft()) + "px");
+ this.css( "zIndex", 8 );
+ return this;
+ }
+
$("#dropdown-standard a").click(function(e){
e.preventDefault();
setPageSessionTimer(expires);
-
display("Log page is ready!");
-
}
function encodeText(el){
// display(desc);
// }
+
function display(desc, times){
var pnl = $("#cat_desc");
if(!times){
times = 1;
}
pnl.html(desc);
+ pnl.dispPos(true);
pnl.show();
pnl.fadeOut(1000*times);
}