<!--
function toggleMouseover(img, source) {
	if (img.src.search("_ro.png") == -1) {
		img.src = source.substring(source, source.length - 4) + "_ro.png";
	}
}

function toggleMouseout(img, source) {
	if (img.src.search("_ro.png") != -1) {
		img.src = source.substring(source, source.length - 7) + ".png";
	}
}

function Start(page) {
var winl = (screen.width - 320) / 2;
var wint = (screen.height - 250) / 2;
winprops='width=320,height=250,top='+wint+',left='+winl+',scrollbars=no,resizable=no,menubar=no,location=no,statusbars=no'
win = window.open(page, "PixWin", winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//  End -->