// JavaScript Document

	function linkTo(page)
		{

			var path = 'http://usvintranet/www/htm/';
			
			var strurl = unescape(path+page);
			
			parent.location.href=strurl;

		}  
		
function image_open(image_loc,img)
{
  HTML = "<html><title>www.usvision.com -------------------------------------------------</title><style>body{margin:0px 0px 0px 0px}</style><body><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no width=350 height=200');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  obj_img = document.getElementById(img);
  obj_img.src= obj_img.src;
}

function get_br_img()
	{		
		var browserName=navigator.appName; 
		if (browserName=="Microsoft Internet Explorer")
		{ 
		//load ie friendly stylesheet
		return 'http://usvintranet/www/img/bkgrnd_full.jpg'
		}
		else 
		{ 
		if ((parseFloat(navigator.appVersion)) >= 5 )
		{
		// if ns version is great than or equal to 5 (6) load this stylesheet
		
		//document.write('<link rel="stylesheet" href="/stylesie.css" type="text/css">')
		
		} else {
		//if you have a really ancient browser ;-) (ie. NS 4.7 or earlier) load this stylesheet
		
		//document.write('<link rel="stylesheet" href="../css/usv_nn.css" type="text/css">')
		
		}
		}

}
