function ShowStuffInWindow(DaURL) {
        var ItsTheWindow;
        ItsTheWindow = window.open(DaURL, "notes",
"status,height=261,width=545,status=no,scrollbars=no,resizable=no,toolbar=0");
       // if (parseInt(navigator.appVersion) >= 3){
       // ItsTheWindow.focus();
       // }
}


function chgImgsSec() {
if (document.images) {
for (var i=0; i<chgImgsSec.arguments.length; i+=2) {
document[chgImgsSec.arguments[i]].src = chgImgsSec.arguments[i+1];
}
}
}
function chgImgsSecLang() {
if (document.images) {
for (var i=0; i<chgImgsSecLang.arguments.length; i+=2) {
document[chgImgsSecLang.arguments[i]].src = 'images/' + chgImgsSecLang.arguments[i+1];
}
}
}

function chgImgs() {
if (document.images) {
for (var i=0; i<chgImgs.arguments.length; i+=2) {
document[chgImgs.arguments[i]].src = 'images/' + chgImgs.arguments[i+1];
}
}
}

/****
 addbookmark():
 -------------
 
 Purpose: To allow the user to book mark the page.
 --------
 
 Changes made:
 -------------
 Function will be place on a stack so when it is done being use it will pop along with it's 
 Local variable and everything else on the stack, so there was no need to define the variables
 As global since they are not being use any where else.

 Modified by Frantz-Edouard Laporte

 Tested in Mozilla 5.0 and IE 7 Version 7.0.5730.13

****/

function addbookmark()
{
 
 var bookmarkurl="http://www.haiti-science.org/haes"
 var bookmarktitle="Haitian-American Association of Engineers and Scientists"

 if (document.all)
 {
  window.external.AddFavorite(bookmarkurl,bookmarktitle)
 }//end if(_);
 else 
	if( window.sidebar )
	{
     window.sidebar.addPanel( bookmarktitle, bookmarkurl, "" );
	}//end else if(_);
 else 
	 if( window.opera && window.print )
	{
     return true;
	}//end else if(_);

}//end addbookmark(void);
