if(document.images)
	{
		
		var p1_on = new Image();
		p1_on.src = "../images/link_com2.gif";
		var p1_off = new Image();
		p1_off.src = "../images/link_com1.gif";


	}


function on(imgName) 
{
	if (document.images) document[imgName].src = eval(imgName + "_on.src");
	return true;
}

function off(imgName) 
{
	if (document.images) document[imgName].src = eval(imgName + "_off.src");
	return true;
}


function limpar()
{
frmconsultar.reset();
}

 

function mostrarfoto()
{
if (document.all.frmconsultar.checkbox1.checked)
	{
	document.all.frmconsultar.mfoto.value = '1';
	}
	else
		{
		document.all.frmconsultar.mfoto.value = '0';
		}
}

