var pop_window;
function add_question(){
	pop_window = openPopup('/questions/add','Новый вопрос');
		
}

function add_review(){
	pop_window = openPopup('/reviews/addnew','Новый вопрос');
		
}

function q_added(){
	alert('ewrwer');
	pop_window.close();
	window.location.reload();

}



function openPopup(url,window_name){
	var newwindow =  window.open(url,window_name,'scrollbars=no,menubar=no,directories=no,location=no,status=no,width=400,height=400');
	if (window.focus) {newwindow.focus()}
	return false;
	
	
}
function $(elementId) {
  element = document.getElementById(elementId);
  return element;
}

