// JavaScript Document

function loadProduct(proID) {
	if (proID=='')
		{window.open('note.htm','_self')}
	else
		{window.open(proID+'.htm','_self')}
}
function highlightOn(oCell,imgID) {
	oCell.style.backgroundImage = 'url(img/bg.gif)';
	oCell.style.color = 'white';
	oCell.style.cursor = 'pointer'; 
	document.getElementById('Foto').src = 'img/'+imgID+'.jpg';
}
function highlightOff(oCell) {
	oCell.style.backgroundImage = 'url(img/steel3.gif)';
	oCell.style.color = '#c06';
	document.getElementById('Foto').src = 'img/PMD.jpg';
}
function hideMenu() {
	document.getElementById('submenu').style.visibility = 'hidden';
}
function showMenu() {
	document.getElementById('submenu').style.visibility = 'visible';
}
