window.onload = init;

function init() {
    $("LangCurrent").onclick = function() { $("Languages").toggle(); };
}

function openWindow(title, url, width, height) {
    // no url, no popup
    if (!url) return;
    // set default title, width and height if not set
    if (!title) tile = "newWindow";
    if (!width) width = 400;
    if (!height) height = 400;
    
    //open new window
    var newWindow = window.open(url,title,"width=" + width + ",height=" + height + ",scrollbars=1");
	// let newWindow get focus
	if (newWindow) {
	   newWindow.focus();
    }
	return false;
}

/******************************************/
log = function(msg) { return; }
