var popUpWin=0;
function popUpWindow(URLStr, strName, left, top, width, height) {
	if(popUpWin) {
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, strName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

// Function for create and object from ID
function createObject(strID) {
	var obj1 = (document.getElementById) ? document.getElementById(strID) : eval("document.all[strID]");
	return obj1
}

function rollOver(strID,strSection) {
	MM_swapImage(strID,'','/images/nav1/' + strSection + '_on.gif',1);
}