//------------------------------------------------------------------------------------------------
//-------------------------- common.js (c) UniQ Media AS -------------------------------------
//------------------------------------------------------------------------------------------------

var new_window = null; 
function pop_up(url, width, height) { 
	//if (new_window != null && !new_window.closed) {
		//new_window.close(); 
	//}
	var options=""; 
	//options="toolbar,menubar,scrollbars,resizable,location,"+width="+width+",height="+height; 
	new_window = window.open(url, 'new_window'); 
	new_window.focus(); 
}