<!--
// Standard JG functions
function E(el) {
	return document.getElementById(el);	
}
function jg_change_vis(el,toState){
	var eMent = document.getElementById(el);
	eMent.style.visibility = toState;
}
function jg_go_url(url) {
	eval("parent.location='"+url+"'");
}

function jg_change_image(img2change,imgpath){
	document.images[img2change].src = imgpath;
}
-->
