/* --------------- Industriales --------------------- */
function showPic (whichpic) {
 if (document.getElementById) {
  document.getElementById('placeholder').src = whichpic;
  return false;
 } else {
  return true;
 }
}


function showModelo(id,picId) {

  document.getElementById(id).src = picId;

}

function goToFicha(id)
{
	document.location.href = id;
	return false;
}
