function show_page (file_path,winName,winParams) {

	var sBaseHref = document.getElementsByTagName("base")[0];
	if (sBaseHref) {
		var baseHref = sBaseHref.getAttribute("href");
		if (file_path.search(/http.+/) < 0) {
			file_path = baseHref+file_path;	
		}
	}
	
	newWindow = window.open(file_path,winName,winParams);
	
	newWindow.focus();	
	if (newWindow.scrollbars && newWindow.scrollbars.visible == false)
	 newWindow.scrollbars.visible = true;
}	
