// JavaScript Document
<!-- Begin

//    Here is where you type in the data for the news section of the website. 
//    This is set up so that you just need to type the information up here at the top, 
//    save the document and the site will update all the pages.
// FLASH CHANGER OPTIONS

var Story1	= "yes"		// SHOW 1ST Story
var Story2	= "yes"		// SHOW 2ND Story
var Story3	= "yes"		// SHOW 3RD Story
var Story4	= "yes"		// SHOW 4TH Story
var Story5	= "yes"		// SHOW 5TH Story
var Story6	= "yes"		// SHOW 6TH Story
var Story7	= "yes"		// SHOW 7TH Story



//    NOTE: If you use an apostrophe add a slash before it like this \'

//
//  ----------  BEGIN STORY ONE HERE-----------------------

//    ENTER STORY ONE HEAD HERE BETWEEN QUOTES.
var story1head = "Hodnett Group to Provide PR Services to Copyright Clearance Center"		

//    ENTER STORY TWO HERE BETWEEN THE QUOTES. 
var story1 = "(Beverly, MA) February 19, 2009- Copyright Clearance Center, the world\'s largest provider of copyright licensing solutions, has tapped the Hodnett Group, Inc. (HGI) to provide public relations strategy and support for the company\'s growing line of innovative content licensing services to the corporate, academic and consumer markets.<br><br>HGI will provide Danvers, MA-based CCC with a variety of public relations services including traditional and interactive media relations, managing the speaking opportunity program, assistance in writing blogs, bylines articles, and creating content for various CCC publication and collateral pieces. <br><br>HGI will also help promote CCC\'s marketing efforts as it makes a foray into digital content licensing solutions assisting with the launch of ReadyImages, a source of and Ozmo, an innovative licensing solution for user generated content such as blogs or digital photographs. <br><br><a href='press/20090210_CCC_PR_releaseFIN.pdf'>Read the Press Release</a>"



 //  ----------  BEGIN STORY TWO HERE-----------------------

// PUT STORY TWO HEAD HERE BETWEEN QUOTES
var story2head = "HGI \'Virtual Marketing Department\' a Perfect Fit for Global Marine Systems"		

// PUT STORY TWO HERE BETWEEN QUOTES
var story2 = "Global Marine Systems has tapped The Hodnett Group to provide public relations and marketing support for its growing subsea cabling business. The Hodnett Group will serve as a \'Virtual Marketing Department\' for the company and its several Joint Ventures, marshalling in-house and outside resources to help advance the brand of the company. <br><br>Additionally, HGI will provide support to rebuild, rebrand and maintain the company\'s website, oversee the global PR and execute analyst relations in the U.S."


//  ----------  BEGIN STORY THREE HERE-----------------------

// PUT STORY THREE HEAD HERE BETWEEN QUOTES
var story3head= "Hodnett Group and Communigration Collaborate on New Image for Software Maker Collabworx"	

// PUT STORY THREE HERE BETWEEN QUOTES
var story3 	 = "CollabWorx, the leading provider of secure collaboration and conferencing over IP (CoIP) software and services, has selected Syracuse-based Communigration and its Boston-based partner, the Hodnett Group, Inc. to provide marketing, branding and public relations support as it seeks to expand its presence in the enterprise and carrier VoiP marketplace. <br><br>To date, CollabWorx primary projects have been for the U.S. Department of Defense and other government agencies where security is at a premium. Its recent successful secure CoIP projects for the Army\'s Defense Language Institute led it to be named Niche Company of the Year by Analyst firm Frost and Sullivan. <br><br>To further support this effort, CollabWorx has tapped industry veterans Communigration and The Hodnett Group for their expertise in the application and VoIP markets. Under the agreement, Communigration will provide branding, messaging and website design and content support for the companies existing products and its new secure Conferencing over IP suite of services. HGI will provide press and analyst relations for the project"	

//  ----------  BEGIN STORY FOUR HERE-----------------------

// PUT STORY FOUR HEAD HERE BETWEEN QUOTES
var story4head= "Hodnett Group Delivers Creative Support for Winsper"

// PUT STORY FOUR HERE BETWEEN QUOTES
var story4="One of Boston\'s hottest up-and-coming advertising agencies, Winsper represents both emerging and established companies in a variety of industries.  A \'thinking\' firm, Winsper devises new ways for its clients to build their brand value over time and sales overnight by providing integrated marketing solutions across all facets of its client\'s businesses including marketing, advertising, public relations and creative communications. <br><br>Winsper has tapped into HGI\'s resoureces to provide experienced writing for advertising, web content, and collateral for clients including Computer Associates, Bowne, and Exeter Hospital."



//  ----------  BEGIN STORY FIVE HERE-----------------------

// PUT STORY FIVE HEAD HERE BETWEEN QUOTES
var story5head= "Hodnett Group the Right Fit for Luxury Footwear Brand Jeffrey Fitzhugh"

// PUT STORY FIVE HERE BETWEEN QUOTES
var story5="LA-based footwear vanguard Jeffrey Fitzhugh has turned to HGI for assistance as it grows its new brand into the premier casual luxury badge. <br><br>HGI will help Fitzhugh hone its west-coast inspired brand positioning and provide writing assistance for the company\'s website as well as industry PR support for the company\'s launch."





//  ----------  BEGIN STORY SIX HERE-----------------------

// PUT STORY SIX HEAD HERE BETWEEN QUOTES
var story6head= "HGI works to Provide PR and Writing Support for Blanc and Otus and AQM Solutions"

// PUT STORY SIX HERE BETWEEN QUOTES
var story6="Public Relations firm Blanc and Otus has turned to the Hodnett Group for copywriting and PR support for its German Software Client, AQM Solutions. B&O has been developing the companies US go-to-market strategy and was looking for experienced writers who could work directly with the client and turn their vision into powerful byline articles and whitepapers. HGI will develop a series of article for the firm that will be placed in key industry trade publications."


//  ----------  BEGIN STORY SEVEN HERE-----------------------

// PUT STORY SEVEN HEAD HERE BETWEEN QUOTES
var story7head= "Hodnett Group to provide writing For Harte-Hankes website"

// PUT STORY SEVEN HERE BETWEEN QUOTES
var story7="Direct Marketing Giant Harte-Hankes has signed on with the Hodnett Group to provide web-copywriting services for its newly created website. <br><br>With initial input and copy coming from several of the company\'s internal departments, HGI will collaborate directly with the subject matter experts and provide the site with a consistent voice and style throughout its 100 plus pages."



//___________________________________________________________________
//BE VERY CAREFUL DOWN HERE. THIS IS THE JAVASCRIPT THAT MAKES THE NEWS PAGE WORK
//____________________________________________________________________



 // 1ST news AREA
   if (Story1 == "yes") {
document.write("<b>");
document.write(story1head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story1);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

   }

 // 2ND news AREA

 if (Story2 == "yes") {
document.write("<b>");
document.write(story2head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story2);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

 }
 
  
 // 3RD news AREA

 if (Story3 == "yes") {
document.write("<b>");
document.write(story3head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story3);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

 }
 
  
// 4th news AREA
 if (Story4 == "yes") {
document.write("<b>");
document.write(story4head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story4);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

 }
 
 // 5th news AREA
 if (Story5 == "yes") {
document.write("<b>");
document.write(story5head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story5);
document.write(' ');
document.write('<br><br> ');
document.write('<br>');

 }

// 6th news AREA
 if (Story6 == "yes") {
document.write("<b>");
document.write(story6head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story6);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

 }
 
// 6th news AREA
 if (Story7 == "yes") {
document.write("<b>");
document.write(story7head);
document.write("</b>");
document.write('<br>');
document.write('<br>');
document.write(story7);
document.write(' ');
document.write('<br><br><br> ');
document.write('<br>');

 }






//  End -->>