// JavaScript Document
function showSubscribeWindow(articleUrl, newsletterId) {
	window.open(articleUrl+"?popup=true&newsletterId="+newsletterId, "_blank", "height=300,width=400,resizable=yes,top=100,left=100,menubar=no,status=no,location=no");
}

function showNewsletter(newsletterUrl) {
	window.open(newsletterUrl, 
				"_blank", "height=800,width=700,resizable=yes,top=100,left=100,menubar=no,status=no,location=no,scrollbars=yes");
}

function printArticle() {
	window.print();
}

function printit()
{
  
  if(navigator.appVersion.indexOf("MSIE 7") != -1)
  {
  //detects IE7 and uses this to print
     document.execCommand('print',false,null);
  }
  else
  {
  //uses this to print from any other browser
     print();
  }
}

function initLightbox() {
	//new Lightbox(); 
}