//Java Script function
function Count ( text, maxlength )
{
    if ( text.value.length < maxlength )
    {
         text.value = text.value.substring(0, maxlength);
		 
         alert("Password should be more than 4 characters");
		 text.focus();
    }
}


function PopUp(href,width,height)
{
	//if (document.all || document.layers)
	//{
   	//	w = screen.availWidth;
   	//	h = screen.availHeight;
	//}

	var h = "../" + href;
	//var leftPos = (w-width)/2, topPos = (h-height)/2;

	window.open(h,'','width='+width+',height='+height +',top=10,left=50,scrollbars=yes');
}
