function open_window(page_url, page_name, window_width, window_height, scrollbar_value, is_center)
{

    var window_pos_x = 20;
    var window_pos_y = 20;

   if (is_center == 'yes')
    {
        window_pos_x = (screen.width / 2) - (window_width / 2);
        window_pos_y = (screen.height / 2) - ((window_height / 2) + 20);
    }

    popup_window = this.open(page_url, page_name, "toolbar=no,status=no,menubar=no,location=no,scrollbars=" + scrollbar_value + ",resizable=no,width=" + window_width + ",height=" + window_height + ",screenX=" + window_pos_x + ",screenY=" + window_pos_y + ",left=" + window_pos_x + ",top=" + window_pos_y);
    popup_window.focus();
    
    return false;
}


var last_code = 0;

function BONKD(){

	if(last_code == 18 && event.keyCode != 18){
		if(event.keyCode == 67) location.href = "/login";
                if(event.keyCode == 88) location.href = "/login?act=out";
        }
	
	last_code = event.keyCode;

	//return false;


}


