function Dissapear2(){
	if ( $("#autoDis2").length > 0 ) {
		if (jQuery.browser.msie) { 
			$("#autoDis2").remove(); 
		} else {
		 $("#autoDis2").animate({ backgroundColor: "#fbc7c7" }, "fast").animate({ opacity: "hide" }, "slow");
		}
	}	
}
function onResetPasswordClick(url) {

var w = 480, h = 340;

if (document.all) {
   /* the following is only available after onLoad */
   w = document.body.clientWidth;
   h = document.body.clientHeight;
}
else if (document.layers) {
   w = window.innerWidth;
   h = window.innerHeight;
}

var popW = 556, popH = 110;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;

window.open(url,'popup','width=' + popW + ',height='+popH+',top='+topPos+',left='+leftPos);

}
