﻿	function toggle(e) 
{
alert();
if (e.style.display == "none")
 {

e.style.display = "";

} else 
{

e.style.display = "none";

}
}

function textCounterr(field,cntfield,maxlimit) 
{
	if (field.value.length > maxlimit) // if too long...trim it!
	field.value = field.value.substring(0, maxlimit);
	// otherwise, update 'characters left' counter
	else
	cntfield.value = maxlimit - field.value.length;
}
		


function printpage(imgId)
{
    var oImg=document.getElementById(imgId);
    oImg.src="/_layouts/images/namimages/print_page_click.gif";
    window.print();
}


function printover(imgId)
{
    var oImg=document.getElementById(imgId);
    oImg.src="/_layouts/images/namimages/print_page_click.gif";
}

function printmouseout(imgId)
{
    var oImg=document.getElementById(imgId);
    oImg.src="/_layouts/images/namimages/print_page.gif";
}

