function distGift(giftID, userName) {
	document.giftList.action=document.getElementById(giftID).value;
	document.giftList.target = userName;
	var op = "left=" + screen.availWidth * 0.02 + ", top=" + screen.availHeight * 0.02 + ", width=" + screen.availWidth * 0.95 + ", height=" + screen.availHeight * 0.9 + ", menubar=no, scrollbars=yes, resizable=yes";
	var win = window.open("", userName, op);
	document.giftList.submit();
	win.focus();
}
