function outside(where)
{
var outsideWindow = window.open("","articles","toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=750,height=550,left=0,top=0,static=yes");
	
	outsideWindow.document.write("<html>");
	outsideWindow.document.write("<head>");
	outsideWindow.document.write("<title>Outside Vital Knowledge Web site: "+where+"<\/title>");
	outsideWindow.document.write("<\/head>");
	outsideWindow.document.write("<frameset rows='40,*' frameborder='0' border=0>");
    outsideWindow.document.write("<frame name='top' src='header.htm' marginwidth='0' marginheight='0' scrolling='no' frameborder='0'>");
	outsideWindow.document.write("<frame name='bottom' src='"+where+"' marginwidth='0' marginheight='0' scrolling='auto' frameborder='0'>");
	outsideWindow.document.write("<\/frameset>");
	outsideWindow.document.write("<\/html>");

	outsideWindow.document.close();
}