function paste_frame_id()
{
	var el_local = window.document.getElementById('frame_id').value;
	var el = window.opener.document.getElementById('frame_id');
	var f = window.opener.document.getElementById('product_form');
	el.value = el_local;
	f.submit();
	window.close();
}

function change_frame_id(id)
{
	var el = document.getElementById('frame_id');
	el.value = id;
	paste_frame_id();
}

