//Used to autotab on fields like telephone number
function AutoTab(original,destination)
{
	if (original.getAttribute && original.value.length == original.getAttribute("maxlength"))
		destination.focus();
}

//used on quote page to display insurance company information
function openwindowCompany(url) 
{
	newwin = window.open(url,"InsCo","top=100,left=100,width=425,height=490,scrollbars=yes");
}

//used to open item links on Learning Center
function PopWindow(url,windowName)
{
	newWindow = window.open(url,windowName,'width=790,height=470,top=5,left=5,menubar=no,resizable=yes,scrollbars=yes toolbar=no location=no');
}

