function Sizex(str){
if (str=="Large") {
	if(document.getElementById("content")==undefined){
		document.getElementById("brief").style.fontSize="16px";
		}
	else{
		document.getElementById("content").style.fontSize="16px";
		}
	}
else{
	if(document.getElementById("content")==undefined){
		document.getElementById("brief").style.fontSize="12px";
		}
	else{
		document.getElementById("content").style.fontSize="12px";
		}
	}
}
function PrintContent(){
if(document.getElementById("content")==undefined){
	document.getElementById("printframe").contentWindow.document.body.innerHTML=document.getElementById("brief").innerHTML;
	document.getElementById("printframe").contentWindow.focus();
	document.getElementById("printframe").contentWindow.print();
	}
else{
	document.getElementById("printframe").contentWindow.document.body.innerHTML=document.getElementById("content").innerHTML;
	document.getElementById("printframe").contentWindow.focus();
	document.getElementById("printframe").contentWindow.print();
	}
}
function PutIframe(){
document.write ("<iframe width='0' height='0' src='' id='printframe'></iframe>");	
}

PutIframe();