//this is used for the news update and the function below is used to update the date.
$(document).ready(function(){
});
function PrintDate(){
	document.write('&copy; ' + (new Date()).getFullYear() + ', Thompson Investment Casting, All Rights Reserved');
}

function generatePreview(){
  $('form')[0].setAttribute("action", "preview?" + new Date().getMilliseconds());
  $("form").attr("target", "_blank");
}

function addArticle(){
  $("form").attr("action", "add");
  $("form").attr("target", "_self");
}

function saveArticle(){
  $("form").attr("action", "edit");
  $("form").attr("target", "_self");
}

