///////////////////////////////////////////////////////////////////////////////////////////////////
// Menu
// A.Kretschmer September 2007
////////////////////////////////////////////////////////////////////////////////////////////////////

function popupwindow(URL,w,h) { 
	window.open(URL,'PopUp','scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + ',screenX=200,screenY=50');
} 

function showStatus(msg) {
	status=msg;
}


function menuclass(cl) {
	ite=window.event.srcElement.sourceIndex;
	//alert(ite);
	
	for (j=ite;j>=0;j=j-1) {
		if (document.all(j).tagName=='td') {
			document.all(j).className=cl;
			j=-1;
		}						
	}
}
