function replaceMainCSS() {
	var popup;
	popup = window.open('','mypopup');
	popup.document.write ('<?xml version="1.0"?>\n');
	popup.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n\t"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"\n');
	popup.document.write ('<html xmlns="http://www.w3.org/1999/xhtml">\n');
	popup.document.write ('<head>\n');
	var myhead = document.getElementsByTagName("head")[0].innerHTML;
	myhead = myhead.replace(/main\.css/,'print.css');
	myhead = myhead.replace(/<script.*\.js[^>]*>/ig,'');
	popup.document.write (myhead + "\n");
	popup.document.write ("<\/head>\n");
	popup.document.write (document.body.innerHTML);
	popup.document.write('<\/body><\/html>');
	popup.document.close();
}

function replaceCasesCSS() {
	var popup;
	popup = window.open('','mypopup');
	popup.document.write ('<?xml version="1.0"?>\n');
	popup.document.write ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n\t"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"\n');
	popup.document.write ('<html xmlns="http://www.w3.org/1999/xhtml">\n');
	popup.document.write ('<head>\n');
	var myhead = document.getElementsByTagName("head")[0].innerHTML;
	myhead = myhead.replace(/cases\.css/,'print.css');
	myhead = myhead.replace(/<script.*\.js[^>]*>/ig,'');
	popup.document.write (myhead + "\n");
	popup.document.write ("<\/head>\n");
	popup.document.write (document.body.innerHTML);
	popup.document.write('<\/body><\/html>');
	popup.document.close();
}
