
function colorCurrent ( id ) {
  color = "#B02538";
  color = "#719734";
  color = "#f00";
  document.write("<style type='text/css'> #" + id   + "{color:" + color + "}</style>");
}

function styleWrite ( id, property, value ) {
  document.write("<style type='text/css'> #" + id   + "{" + property + ":" + value + "}</style>");
}

function pmenuopen(caller) {
	var pmenu = document.getElementById('pmenu');
	children = pmenu.childNodes;
	for (i = 0; i < children.length; i++) {
		if (children[i].id != null) {
			children[i].className = "";
		}
	}
	caller.className = "pmenuCurrent";
	scrollToElement(pmenu);
frames['viewport'].location.href = "products/" + caller.id + "/index.php";
}

function absoluteOffset(elem) {
    return elem.offsetParent && elem.offsetTop + absoluteOffset(elem.offsetParent);
}

function scrollToElement(elem) {
    window.scroll(0, absoluteOffset(elem) - 5);
}
