<!--
function openPopup( url, width, height ){	
	if (!width) width = 640
	if (!height) height = 540
	LIBopenWindow(url,'popupCL1',width,height,null,null,"scrollbars").focus()
}
function openRoute( url, width, height ){	
	if (!width) width = 640
	if (!height) height = 540
	var left = (screen.availWidth - width)/2;
	var top = (screen.availHeight - height)/2;
	LIBopenWindow(url,'popupCL2',width,height,left,top,"scrollbars").focus()
}
//-->
