/*
* Core functions and modules
*/

function OpenIDWindow( url ) {
    var w = window.open(url, 'openid_login', 'width=700,height=400,left=100,top=10,resizable=yes,scrollbars=yes,status=no');
    if ((w == null) || (w == undefined)) {
    } else {
	try { w.focus(); } catch (wtf) { }
    }
    return false;
}

function AuthOnEnd () {
    document.location.href = document.location.href;
}

