//****************************************************************************************************
//Copyright Saskatchewan Learning
//Authors:	Web Site Design and Content Creation:  Jeff Boulton [jboulton@sasktel.net]
//			Content Creation:  Michelle O'Brien  [mobrien@mjsd1.ca]
//			Moose Jaw Public School Division #1
//This script defines all pop up windows used throughout the Physics Site.
//*********************************************************************************************************-->


//Better late then never - should have used this script from the start
function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="scrollbars,top=0,left=0,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="top=0,left=0,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}

// Pop up glossary window 
function glossary(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,toolbar=yes,status=yes,location=yes,width=380,height=440,top=10, left=10')
myFloater.location.href = fileName;
}

// Pop up faq window 
function faq(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,toolbar=no,status=no,location=no,width=570,height=440,top=10, left=10')
myFloater.location.href = fileName;
}

// Pop up Search window
function search(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,status=yes,location=yes,width=620,height=470,top=0, left=0')
myFloater.location.href = fileName;
}

// Pop up Disclaimer
function dis(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,status=no,width=380,height=550,top=10, left=10')
myFloater.location.href = fileName;
}

// Pop up Unit Organization
function unitorg(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,status=no,width=380,height=550,top=0, left=0')
myFloater.location.href = fileName;
}

// Pop up Authors
function authors(fileName) {
myFloater = window.open('','myWindow','resizable=yes, scrollbars=yes,status=no,width=380,height=570,top=0, left=0')
myFloater.location.href = fileName;
}

//Flash Movie ref.swf - Lesson1.1.1
function unmotion(fileName) {
myFloater = window.open('','myWindow','resizable=no, scrollbars=no,status=no,width=550,height=420,top=10, left=10')
myFloater.location.href = fileName;
}

//CheckPoint
function checkpoint(fileName) {
myFloater = window.open('','myWindow','resizable=no, scrollbars=yes,status=no,width=575,height=450,top=5, left=5')
myFloater.location.href = fileName;
}

//Jeporday Game
function game(fileName) {
myFloater = window.open('','myWindow','resizable=no, scrollbars=yes,status=no,width=565,height=480,top=5, left=5')
myFloater.location.href = fileName;
}