// JavaScript Document
function resizeThis(){
	var topHeight=top.document.body.scrollHeight;
	var documentHeight=document.body.scrollHeight + 20;	
	top.document.getElementById('frameEu').style.height = documentHeight +"px";				
}

function poemChange(id){
	if (id ==''){
		title_pg = "Thank You for your Service";
		author_p = "Michaud Lormil Junior";
	}else{
		title_pg = "The policeman stood and faced his God";
		author_p = "T-A- 067 PCT";
	}
	document.getElementById('title_pg').innerHTML = title_pg;
	document.getElementById('author_poem').innerHTML = author_p;
}