//****************************
//*    Scripts by Phob
//****************************


//******** OPEN FULL SCREEN **********************************************************************************************************************************************
function GoFullScrn(theURL) {
if (navigator.appName == "Microsoft Internet Explorer"){ // Ie 6,7
window.open(theURL, '', 'fullscreen=yes, scrollbars=no, resizable=yes, menubar=yes').focus();
}
else { // Firefox
window.open(theURL, '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=no, resizable=yes, ').focus();
}
}

//******** CHARACTER SELECTOR ********************************************************************************************************************************************
function P_Selecter(MyVar) {

if(MyVar == "P0") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02.jpg)"
document.getElementById('P_Msg').innerHTML = '\"I have five groups of very good friends who live in different parts of the Congo.\"';
} 

if(MyVar == "P1") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02_a.jpg)"
document.getElementById('P_Msg').innerHTML = '\"The Explorers live in a small village in the middle of the savannah.\"';
} 

if(MyVar == "P2") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02_b.jpg)"
document.getElementById('P_Msg').innerHTML = '\"The Smarties live in a big city.\"';
} 

if(MyVar == "P3") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02_c.jpg)"
document.getElementById('P_Msg').innerHTML = '\"The Sportsguys play all over their village.\"';
} 

if(MyVar == "P4") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02_d.jpg)"
document.getElementById('P_Msg').innerHTML = '\"The Fun Girls like to play closer to home.\"';
} 

if(MyVar == "P5") {
document.getElementById('CT_Presentation').style.background = "url(images/S1_02_e.jpg)"
document.getElementById('P_Msg').innerHTML = '\"The Daredevils play in the river.\"';
} 
} 