// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// always blow out of frames
if (window != top) top.location.href = location.href;

window.onload = focusForm;

function focusForm() {
    if(document.getElementById("login")){document.getElementById("login").focus();} 
}
