<!--

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
//-->
<!--

function openURL()
{

      // grab index number of the selected option
      selInd = document.theForm.aaa.selectedIndex;

      // get value of the selected option
      goURL = document.theForm.aaa.options[selInd].value;

      // redirect browser to the grabbed value (hopefully a URL)
      top.location.href = goURL;

}

//-->

<!--
function mailpage()
{
mail_str = "mailto:?subject=Sciencefairinfo.ns.ca"
mail_str += "&body=I thought you might be interested in this website developed by Nova Scotia Youth Experiences in Science. This is the official resource site for the Science Fair program throughout Nova Scotia and it includes lots of great features and information."
mail_str += " The website address is www.sciencefairinfo.ns.ca."
location.href = mail_str;
}
//-->

<!--
var remote = null;
function rs(n,u,w,h) {
remote = window.open(u, n, 'width=' + w + ',height=' + h +',resizable=no,menubar=no,scrollbars=auto');
if (remote != null) {
if (remote.opener == null)
remote.opener = self;
window.name = 'SFIRoot';
remote.location.href = u;
}
}
//-->
<!--
function changeImages() {
if (document.images ) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
//-->