<!--

function showProps( ) {
    objName = "plugins";
    obj = navigator.plugins;
	alert(obj);
    var msg = "";
    for (var i in obj) {
        msg += objName + "." + i + "=" + obj[i] + "\n";
    }
    alert(msg);
}

// JavaScript Document
function openBigImageWindow(obj)
{
	path = obj.src;
	if(path.indexOf(".jpg") > 0) ext = "_t.jpg";
	if(path.indexOf(".gif") > 0) ext = "_t.gif";
	if(path.indexOf(".png") > 0) ext = "_t.png";
	
	newPath = path.replace(ext, ".jpg");	

	newWindow = window.open(newPath, "bigImage", "height=460,width=500,menubar=0,scrollbars=1,resizable=1,toolbar=0,status=0");
	newWindow.focus();
}

function on_mouseover(obj)
{
	obj.style.borderColor = "#993300";
}


function on_mouseout(obj)
{
	obj.style.borderColor = "#cccccc";
}