// JavaScript Document
// Copyright 2003, Lindsay Grace

function OpenExternalLink(strLocation){
	var newWindow;

	newWindow = window.open (strLocation,"subWind","toolbar,statusbar,scrollbars,menubar,resizable,HEIGHT=500,WIDTH=550");
	newWindow.focus();
	
}
