// JavaScript Document

function external_link(link) {
	ConfirmStatus = confirm("You are leaving Fort Dodge Livestock, a Web site of Wyeth.\n\nLinks to all outside web sites are provided as a resource to our visitors.\nWyeth accepts no responsibility for the content of other web sites.\n\nClick OK to continue.\n ");

	if (ConfirmStatus == true) {
		windowID = Math.round(Math.random() * 1000000);
		window.open(link, windowID.toString());
	}

	if (ConfirmStatus == false) {
		return;
	}

}
