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

function pop_fixed(href, width, height, sb){
	window.open(
		href,
		'editing_window_' + Math.floor(Math.random() * 10 ^ 9),
		'width=' + width + ', height=' + height + ', left=' + (screen.availWidth - width) / 2 +
		', top=' + (screen.availHeight - height) / 2 + ',  menubar=no, location=no, resizable=yes, scrollbars=' + sb
	);
}

/*
 * go()
 * a select menu navigation
 */

function go(el){
  destination = el.options[el.selectedIndex].value;
  if(destination) location.href = "/homepage/" + destination;
}
