// Zakladni fce javasciptu
function openWindow(path, params,name, target){
	
	if((params == '') || (params == 'undefined')){
		params='toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1, height=400, width=400';
	}		
	if((name == '') || (name == 'undefined'))
		name='okno';
	if((target == '') || (target == 'undefined'))
		target='_blank';

	window.open(path, name,params);
	return;
}

function DHTML_Edit(path_to_root, edit_object){
	openWindow(path_to_root + '_inc/editor/editor.php?INSERT_OBJECT='+ edit_object, "location=0, menubar=0, status=1, toolbar=0, resizable=1, height=550, width=700");		
}