function getForgotPassword(){	
	var div = getPanel("Forgot Password","320px");
	var page= getPageByPath("widgets/index/pages/layout/forgotpassword.php");
	document.getElementById(div).innerHTML=page;
	$j(div).show("slow");
	allCornerRound("div#main-div");
	$j(".sbutton").hover(function(){
        $j(".sbutton img")
        .animate({top:"-10px"}, 200).animate({top:"-4px"}, 200) // first jump
        .animate({top:"-7px"}, 100).animate({top:"-4px"}, 100) // second jump
        .animate({top:"-6px"}, 100).animate({top:"-4px"}, 100); // the last jump
    });
	
}
function sendRemindPasswordMail(txtBoxEmailId,txtBoxUserId){
	waitPanelObject=getWaitPanel();
	waitPanelObject.dialog("open");
	
	var emailId="";
	var userId="";
	if($j("#"+txtBoxEmailId) !=null ){
		emailId = $j("#"+txtBoxEmailId).val();
	}
	if($j("#"+txtBoxUserId) !=null ){
		userId = $j("#"+txtBoxUserId).val();
	}
	var subject="Your ISKRIB Authentication Details.";
	var params	=	'emailId='+emailId;
		params	+=	'&userId='+userId;	
		params	+=	'&subject='+subject;	
		params	+=	'&CID=header';
		params	+=	'&imageName=ISKRIB';
		params	+=	'&action=RemindPassword';
		
	var data = getAjaxData('widgets/index/pages/action/forgotpassword.php','main-div',params,false);
	waitPanelObject.dialog("close");
	$j("#main-div").html(data);
}
function showFAQ(){
	var div = getPanel("Information About ISKRIB","1000px");
	var page= getPageByPath("widgets/index/pages/layout/TabViewOrg.html");
	document.getElementById(div).innerHTML=page;
	$j("#tabs").tabs();
}
