// this file controlls the links to spicific pages within the site
// to change the location of the link change the content of the 
// theLink.href="../Htmlfiles/ContactUs.jsp"; 
// replace the ../Htmlfiles/ContactUs.jsp with your COMPLETE URL
// ie theLink.href="http://www.MyNewspapaer.com/contact_us.html"; 
// be sure to include the 'http://' part

//this is the link for the return to button in the side navagation
function paper(theLink)  { 
                   theLink.href="http://www.cnicorp.com/"; //change this
                   return true;
 }
//this is the link to the Contact Us page
 function ContactUsURL(theLink)  { 
                   theLink.href="../Htmlfiles/ContactUs.jsp"; //change this
                   return true;
 }

//this is the link to the Mechanical Specs page
function MechanicalSpecsURL(theLink)  { 
                   theLink.href="../MakeAd/Mechanical.jsp"; //change this
                   return true;
 }
 
//this is the link to the Deadlines page
function DeadlinesURL(theLink)  { 
                   theLink.href="../CustomerService/Deadlines.jsp"; //change this
                   return true;
 }
 
 //this is the link to the Deadlines page
function AdOpportunitiesURL(theLink)  { 
                   theLink.href="../CustomerService/AdOpportunities.jsp"; //change this
                   return true;
 }
 


