// JavaScript Document
function ZoomWin(URL)
{
	
	var url = URL
	
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=no,height=550,width=700,scrollbars=no";
	
	
		detail = window.open("", "ZoomWindow", opts);
		
		detail.focus();
		
		detail.location = url;
		
}

function link()

{ 
event.srcElement.style.color="#FF9900";
event.srcElement.attachEvent('onmouseout',fontOff);
}

function fontOn()
{ 
event.srcElement.style.color="#FF9900"; 
} 

function fontOff()
{ 
event.srcElement.style.color="#000000"; 
} 

function prePrint()
{
	if (window.print) window.print();
	else if (VBS) printIt();
	else alert('This script does not work in your browser');
}


function home()
{
	window.close()
	detail = window.open("/laurel/index.htm", "parentWindow");
	detail.focus();
}


function CardWin(URL)
{
	
	var url = URL
	
	var opts = "toolbar=yes,status=yes,location=yes,menubar=no,resizable=yes,height=600,width=785,scrollbars=yes,left=75,top=0";
	
	
		detail = window.open("", "CardWindow", opts);
		
		detail.focus();
		
		detail.location = url;
		
}

function linkWin(URL)
{
	
	var url = URL
	
	var opts = "toolbar=yes,status=no,location=yes,menubar=no,resizable=yes,height=550,width=600,scrollbars=yes,left=0,top=0";
	
	
		detail = window.open("", "linkWindow", opts);
		
		detail.focus();
		
		detail.location = url;
		
}
function glossWin(URL)
{
	
	var url = URL
	
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=yes,height=400,width=400,scrollbars=yes,left=100,top=100";
	
	
		detail = window.open("", "glossWindow", opts);
		
		detail.focus();
		
		detail.location = url;
		
}


function navRollOver(obj, state) {
  document.getElementById(obj).className = (state == 'on') ? 'nav-highlight' : 'nav';
}
