// JavaScript Document
function printme(id) {
	pfTitle = document.title;
	supported = (document.getElementById);
	nonsupported = (!document.getElementById);
	if (supported) {
		printContent = document.getElementById(id).innerHTML;
	}
	else if(nonsupported) {
		printContent = ("<H1>Sorry, your browser doesn't support this feature.</H1><P><B>Tip:</B> Upgrade to ie6-7/ff or higher.");
	}
	myPrintWindow = window.open('','myPrintWindow','resizable,scrollbars=1,status=1,top=20,left=20,width=620,height=400');

	newDocument = myPrintWindow.document;

	newDocument.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	newDocument.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	newDocument.writeln('<head>');
	newDocument.writeln('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
	newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/layout-main.css" media="screen,print" />');
	newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/layout-common1.css" media="screen,print" />');
	newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/extensions.css" media="screen,print" />');
	newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/decorations.css" media="screen,print" />');
	//newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/print.css" media="print" />');
	newDocument.writeln('<link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/layout-common2.css" media="screen,print" />');
	newDocument.writeln('<title>CENTRAL EUROPE -&nbsp;Project Ideas</title>');
	newDocument.writeln('<!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/ie.css" media="screen" /><![endif]-->');
	newDocument.writeln('<!--[if IE 7]><link rel="stylesheet" type="text/css" href="http://www.central2013.eu/fileadmin/tmpl/css/ie7.css" media="screen" /><![endif]-->');
	newDocument.writeln('<style>.tx-projects-pi1-single_link {display: none;}</style>');

	newDocument.writeln('</head><body><div id="main"><div class="tx-projects-pi1"><div class="tx-projects-pi1-single">');
	newDocument.writeln(printContent);
	newDocument.writeln('</div></div></div></body></html>');
	newDocument.close();
}
