//open activities list
function openList(URL){
List=window.open(URL,"List","width=160,height=350, scrollbars=yes, left=10, x=10, top=10, y=10")
}

//open index
function openIndex(URL){
List=window.open(URL,"Index","width=410,height=450, scrollbars=yes, left=10, x=10, top=10, y=10")
}

//open lesson plan music
function openMusic(URL){
List=window.open(URL,"Music","width=455,height=450, scrollbars=yes, left=10, x=10, top=10, y=10")
}

//open enlarged photo
function openPhoto(URL){
List=window.open(URL,"Photo","width=325, height=450, scrollbars=yes, left=10, x=10, top=10, y=10")
}


// target the window that opened the popup
//target opener
function mainGotoNF(URL){
opener.location.href = URL;
window.close();
}//jump menu drop downfunction jumpMenu(targ,selObj,restore){eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");if (restore) selObj.selectedIndex=0;}function findObj(n, d) {var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document); return x;}function jumpMenuGo(selName,targ,restore){var selObj = findObj(selName); if (selObj) jumpMenu(targ,selObj,restore);}