function Popup(path,width,height)
{
	var  temp_image= new Image();
	var popupImage = window.open("","_blank","toolbar=no,scrollbars=no,status=no, resizable=no ,width="+width+", height="+height);

	popupImage.document.open();
	temp_image.src = path;
	
	popupImage.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style>body{margin:0px; background:#ECEBEC;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px; cursor:pointer}</style><title>PopUp</title></head><body onClick="top.close()" ><img src="'+temp_image.src+'"  alt="" /></body></html>');
	popupImage.document.close();

}

function CleanNip(i_idNip, i_idRadio)
{
	if(document.getElementById(i_idRadio).checked)
	{
		document.getElementById(i_idNip).value = '';
		document.getElementById(i_idNip).disabled = true;
	}
	else
	{
		document.getElementById(i_idNip).disabled = false;	
	}
}




