﻿ function LargerPicture(picName)
{
    window.open('viewImage.aspx?'+ picName,"",'resizable=1,HEIGHT=200,WIDTH=200,top=0' + ((screen.height - 800)/2) + ',left=' + ((screen.width - 684)/2));	        
}
function changePassword(act)
{	
   window.open("ChangePass.aspx?act="+act+"", '_blank', 'resizable=yes,width=450px,height=190px,left=270,top=80,scrollbars=0,menubar=0,status=0,derectories=0,toolbar=0,location=0,resizable=0');
}
function Search_Onclick(txt , objid)
{
    var obj = document.getElementById(objid);	
    if(window.event.keyCode == 13)
    {
        if(txt.value != '')	
        { 
            obj.click();
            window.event.returnValue = false; 
        }
    }
}
