﻿    function showlnk(i)
        { 
        
        //FeatuStr = "width=245,height=285,top=" + screen.availHeight/3 + ",left=" + screen.availWidth/2.5 + ",toolbars=no,scrollbars=yes,status=no,resizable=yes"; 
        FeatuStr = "width=450,height=450,top=" + 150 + ",left=" + screen.availWidth - 500/2 + ",toolbars=no,scrollbars=no,status=no,resizable=yes"; 
        ChildWindow=window.open('ItemDetailsPopup.aspx?ItemID='+i,'windetails',FeatuStr); ChildWindow=null; 
        
        }
//      screen.availHeight/3

        function KeyDownHandler(btn)
        {        
            if (event.keyCode == 13)
            {
                event.returnValue = false;
                event.cancel = true;
                document.getElementById(btn).click();
            }
        }
        
function PopUp(path)
{				
	//alert(ImagePath);
	//alert(ImageCaption);
	window.open(path,'','width=700,height=500,titlebar=yes,scrollbars=yes,resizable=yes,left='+(screen.width-700)/2+',top='+(screen.height-700)/2);	
	return false;
}

//// validate the maximum length of testbox
//function checkLength(txtBox)
//{
////    document.getElementById(txtBox).click();
//    
//    alert(document.getElementById(txtBox).value.length);
//    if (document.getElementById(txtBox).value.length > 10)
//    {
//        alert("Text too long. Must be 1000 characters or less");        
//        return false;
//    }
//    else
//    {
//        return true;
//    }
//}
