var newwindow;
//function popUp(url,height,width)
//{
//	newwindow=window.open(url,'name','height='+height+',width='+width+''');
//	if (window.focus) {newwindow.focus()}
//}


function showInfo(divID) {
	infoElement=document.getElementById(divID);
	infoElement.style.color='red';	
	infoElement.style.top='100px';
	infoElement.style.left='1000px'
	infoElement.style.height='600px';;

}

function switchClass(idName,newClass) {
	classElement=document.getElementById(idName);
	classElement.className=newClass;
}
