function arte_print_value(form_name, var_name, var_value)
{
	var form_obj = eval("document." + form_name);
	form_obj[var_name].value = var_value;
}

function show_photo(file_type, id_parent, id_file, width, height)
{
	var parametry = "TOOLBAR=no,STATUS=no, width="+width+", height="+(height+20);
	var gdzie = "pic_show.php?photo="+id_file + "&parent="+id_parent + "&type=" + file_type;
	
	if (typeof show_photo_window == "object")
		show_photo_window.close();

	show_photo_window = window.open(gdzie,"", parametry);
}


