// Javascript for the Edit Link
function editFile(SECTION)
{
	var root = 'http://www.ravinehotel.com';
	//var EditorPath = 'http://carlo/ravine/editor/editor.php';
	var EditorPath = 'http://www.ravinehotel.com/editor/login.php';
	var FileName = window.location.href.replace(root,'');
	if(FileName == "/")
 	 {
                    FileName= "default.html"
                 }
	window.location.href = EditorPath + '?FileName=' + FileName + '&SectionName=' + SECTION;
}

function RateWindow(url)
{
var hWnd = window.open(url,"Rate","width=550,height=600,resizable=no,scrollbars=yes,left=250,top=0");
if (hWnd.focus != null) hWnd.focus();
}	  