﻿function rover(o)
{
    o.src = o.src.replace(".gif", "-on.gif");
    alert("over"); 
};

function rout(o)
{
    o.src = o.src.replace("-on.gif", ".gif");
};

function ShowTerms(URL,PopUpName,Width,Height)
{
	try
	{
		if (Width =="" || Width == null) Width = 600;
		if (Height == "" || Height == null) Height = 500;

		var features =
		',directories=0'+
		',location=0'   +
		',menubar=0'   +
		',scrollbars=1'+
		',status=0'   +
		',toolbar=0'   +
		',resizable=1' +
		',width=' + Width +
		',height=' + Height +
		',screenX=15'
		',screenY=15'
		',top=15'+
		',left=15';
		URL = URL.replace(/\s/,'%20');
		wind = window.open(URL, PopUpName, features);
		wind.focus();
		
		return false; 
	}
	catch(err){}	
	
	return true; 
};
