function changeButton(obj, className) {
	obj.className = className;
}	
function openWindow(num) {
       if(num)
		document.getElementById('window').style.display = 'inline';
	else
		document.getElementById('window').style.display = 'none';
}
function closeWindow() {
	openWindow(0);
	
}


