<!--
browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);

function rollover(name,location)	{
	if 	(browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0  ||
         		 browser_name == "Netscape" && browser_version >= 3.0)
		{
		document.images[name].src = location;
		}
	else return;
	}

function rollout(name,location)	{
	if 	(browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0  ||
        		 browser_name == "Netscape" && browser_version >= 3.0)
		{
		document.images[name].src = location;
		}
	else return;
	}
	
	
function newWindow(openrepo){


repoWindow = window.open(openrepo,
	'repoWin', 'width=500, height=400')
	
	repoWindow.focus()
	



}	



function newWindow1(openVisa){


VisaWindow = window.open(openVisa,
	'repoWin', 'width=500, height=600')
	
	VisaWindow.focus()
	



}	
	
// -->


