function openImagePopup($popupTitle,$file)
{
	var $win=window.open("../request/actions_popup_picture.php","popup","width=50, height=50, toolbar=0, location=0,status=0");
	$win.moveTo(10,10);
	$win.$popupTitle=$popupTitle;
	$win.$file=$file;
}

function newWin($url)
{
	var $win=window.open($url,"i","witdh=500");
}
