// Mag_emailAndPrint.js by ANDY BELL
// This document contains functions for the Email a freind and Printer freindly button in the Total Politics Magazine section.

function emailWindow(url, artTitle){ 
	artTitle = artTitle.replace('<br />', '');
	url = url + "&pTitle=" + artTitle;
	window.open(url, "pop", "width = 650, height = 520, top = 90, left = 75, scrollbars = 1, resizable = 0") 
	}

function printWindow(url){ 
	window.open(url, "pop", "width = 1050, toolbar =yes, resizable=yes, scrollbars=yes") 
	}