function editContent(path, language, refresh)
{
	width=610;
	height=450;
	vars="width="+width+",height="+height +",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2);
	newwindow = window.open("content.php?path=" + path + "&refresh=" + refresh, "editcontent", vars);
	if (newwindow.document.focus) {newwindow.document.focus();}
	newwindow.document.close(); 
	return false;
}

function editImage(path, refresh)
{
	width=310;
	height=150;
	vars="width="+width+",height="+height +",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2);
	newwindow = window.open("imagecontent.php?path=" + path + "&refresh=" + refresh, "editcontent", vars);
	if (newwindow.document.focus) {newwindow.document.focus();}
	newwindow.document.close(); 
	return false;
}
