var win=null;
function login(url, handle) {
	var kiosk_mode_flag = 'yes';
	var screen_width = screen.width;
	var screen_height = screen.height;
	var is_resizable = 'yes';
	if (kiosk_mode_flag == 'no') { location.href = url; } else {
		if (screen_width < 1024 || screen_height < 768) { features = 'resizable='+is_resizable+', status=yes, scrollbars=yes, toolbar=no, menubar=no, location=no, directories=no, width='+screen_width+', height='+screen_height; }
		else { features = 'resizable='+is_resizable+', status=yes, scrollbars=no, menubar=no, location=no, directories=no, width='+screen_width+', height='+screen_height; }
		win = window.open(url, handle, features);
		window.close();
	}
}

$(document).ready(function() {
    $('.login_open_window').live('click', function(event) {
        event.preventDefault();
        login('https://fasttrack.catch-e.net.au/core/login.phpo?i=&screen_width=' + screen.width + '&screen_height=' + screen.height, 'core_login');
    });
});

