	var book0 = "";

	var book1 = "<table class='innerTable'><tr><td width='2%' rowspan='3' valign='top' ></td><td height='5' colspan='2' valign='top' ></td><td width='2%' rowspan='3'></td></tr><tr><td width='20%' height='90' valign='top' ><img src='../../images/FP_Book_1b.png' alt='FauxPaw Goes to the Games' width='63' height='71' border='0'></td><td width='66%' valign='top'  class='sub_txt'><span style='font-weight: bold; font-size:11px'>New Book Faux Paw Goes to the Games</span><p>Balancing Real Life with Screen Time</p></td></tr><tr><td colspan='3' class='sub_txt'>Wait 'til you hear what almost happened to me! Did you ever get your real life mixed up with your online life? I did, and wow, what a mess!</td></tr></table>";
	
	var book2 = "<table class='innerTable'><tr><td width='2%' rowspan='3' valign='top' ></td><td height='5' colspan='2' valign='top' ></td><td width='2%' rowspan='3'></td></tr><tr><td width='30%' height='90' valign='top' ><img src='../../images/FP_Book_2b.png' alt='FauxPaw Meets the First Lady' width='63' height='71' border='0'></td><td width='66%' valign='top' class='sub_txt'><span style='font-weight: bold; font-size:11px'>Faux Paw Meets the First Lady</span><p>How to handle cyber-bullying</p></td></tr><tr><td colspan='3' valign='top' class='sub_txt'><p>Going to Washington to meet the first lady was really exciting. In fact It got so exciting I almost made another big mistake on the internet.  Okay. I did make a mistake. If it hadn’t have been for the first lady iwould have been in big Big trouble.</td></tr></table>";

	var book3 = "<table class='innerTable'><tr><td width='2%' rowspan='3' valign='top' ></td><td height='5' colspan='2' valign='top' ></td><td width='2%' rowspan='3'></td></tr><tr><td width='30%' height='90' valign='top' ><img src='../../images/FP_Book_3b.png' alt='FauxPaw's Adventures in the Internet' width='63' height='71' border='0'></td><td width='66%' class='sub_txt'><span style='font-weight: bold; font-size:11px'>Faux Paw's Adventures in the Internet</span><p>Keeping children safe online</p></td></tr><tr><td colspan='3' width='96%' valign='top' class='sub_txt'><p>The Internet is like a big city with great places to go, but you have to be careful! I know. I had a REAL adventure on the Internet, and it wasn't the fun kind. When I tell you what almost happened, you'll see why it's so important to follow the rules for online safety!</td></tr></table>";

	var book_desc_content = "";

function update_descript(new_Page){
	if (new_Page =="games"){
		book_desc_content = book1;
	}else if (new_Page == "firstLady"){
		book_desc_content = book2;
	}else if (new_Page == "adventures"){
		book_desc_content = book3;
	}else{
		book_desc_content = book1;
	}
	document.getElementById("book_discrip").innerHTML = book_desc_content;
}

function psa_popup (URL) {

			var vSize = "285";
			var hSize = "360";
		
	eval("page" + " = window.open(URL, '" + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + hSize + ",height=" + vSize + ",left = NaN,top = NaN');");
	
	}