function open_frame ( type_frame , width , height , e , txt )
	{

	my_form = getElement ( "to_frame" );
	my_form.popup_action.value = type_frame;
	my_form.popup_caption.value = txt;
	my_form.submit();

	my_fr = getElement ( "my_frame" );

	my_fr.style.width = width;
	my_fr.style.height = height;
	WP_positioningCenter( my_fr );
	}