<!--

function version() { return "10.08.31"; }

function getLevelStr(iLevel) {
	
	var i, sLevel, s;

	sLevel = "";
		
	for (i=0; i < iLevel; i++) sLevel = sLevel + "../";
	
	return sLevel
}

function openw(url, w, h) {
	
	var woptions;

	woptions = "height=" + h + ", width=" + w + ", resizable=1" + ", toolbar=0"; 
	w = window.open(url, "" , woptions); 
}


function openws(url, w, h) {
	
	var woptions;

	woptions = "height=" + h + ", width=" + w + ", resizable=1" + ", scrollbars=1" + ", toolbar=0"; 
	w = window.open(url, "" , woptions); 
}

// -->
