jQuery.fn.waitingJFrame = function () {
	LeftPosition=(screen.width) ? (screen.width-100)/2 : 0;
	TopPosition=(screen.height) ? (screen.height-450)/2 : 0;
	var txt='';
	txt +="<div id='loading' style='cursor:wait; opacity: .9; z-index: 5;position: absolute; left: "+LeftPosition+"px; top: "+TopPosition+"px; background-color: #ffffff; border-color: #ff6600; border-style: solid; border-width: 1px; padding-left: 10px; padding-right: 10px; padding-top: 8px; padding-bottom: 10px; text-align: center;'><img src='img/wait.gif' border=0>&nbsp;<span style='font-weight: bold; font-size: 10px; color: #000000;'>Loading Page...Please Wait</span></div>";
	jQuery(this).html(txt);
}