var StyleFile = "css/style" + document.cookie.charAt(6) + ".css";
document.writeln('<link rel="stylesheet" type="text/css" href="' + StyleFile + '">');



function popwin(page,wid,hght,winname)
{	window.open(page, winname, "width="+wid+",height="+hght+",scrollbars=no");	}

function popwins(page,wid,hght,winname)
{	window.open(page, winname, "width="+wid+",height="+hght+",scrollbars=yes");	}

function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors .length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
anchor.target = "_blank";
anchor.title = (anchor.title != "") ? anchor.title+" (opens in a new window)" : "opens in a new window";
anchor.className = (anchor.className != '') ? anchor.className+' external' : 'external';
}
}
}
window.onload = externalLinks;



// form stuff here

function submitCompanySearchForm()
	{
		var errMsg;
		var valid = true;
		
		if (document.frmSearchCompany.txtCompanyName.value == '')
			{
				valid = false;
				alert("\n - You must fill in your First Name");
			}
		
		if (valid == true)
			{
				document.frmSearchCompany.submit();
			}

		
	}
	
	
	
	
	
	
	
	
	
	
	
	
	