﻿//Creating Printable pages
function printable(path){
	var top = '<html><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/><head><title>Printable Version</title><base href="http://www.ifpma.org/" /><link rel="stylesheet" type="text/css" media="screen,projection" href="/fileadmin/templates/ifpmapartnerships/css/template.css"><link href="/typo3temp/stylesheet_c579065518.css" rel="stylesheet" type="text/css" media="all"><link rel="stylesheet" href="/fileadmin/templates/ifpmapartnerships/css/MainHeaderCtrl.css" type="text/css"/></head><body style="margin:10; width:600px;"><img src="/images/IFPMA%20blue%20and%20black%20logo.jpg" alt="IFPMA"/><br><br><div class="printable" id="plain-page">';
	var bottom = '</div><div id="footer"><div id="left"><a href="http://ifpma.org/privacy_policy.aspx">Privacy Policy</a>| Copyright© IFPMA 2005-2008</div></div></body></html>';
	getthis=document.all?document.all['plain-page']:document.getElementById('plain-page');
	var popurl=path?path+"/printable.html":"/printable.html";
	winpops=window.open(popurl,"","width=645,height=640,status,scrollbars,menubar,resizable");
	winpops.document.write(top+getthis.innerHTML+bottom);
	winpops.document.close();
} 