var newWindow = null;
window.name = "content";

function openWindow(contentURL,windowName,features) {
	newWindow = window.open(contentURL,windowName,features);
	newWindow.focus();
}

function closeWindow() {
	self.close();
}
		
function togglemenu(objectID) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		if (domStyle.display =='block')  domStyle.display='none';
		else domStyle.display='block';
	}
	else {
		destination = objectID + '.html';
		self.location = destination;
	}
	return;
}