// popup the feedback email form
// Example of Recipients:
// 'Biz' for Business & Development
// 'Feedback' for Feddback and Ideas
// 'Abuse' to report Abuse
// 'Support' for Support Request
// 'Press' for meida & Public Relations
// 'Jobs' for Jobs
function showMailForm(recipient)
{
	h=370;
	w=500;
	signinPopupWin = window.open("/go/public?view=/public/piczo2/feedbackEmailForm.jsp"+encodeURI("?to="+recipient),"PiczoMailForm",
	  "toolbar=no,scrollbars=yes,location=no,status=yes,resizable=yes,width="+w+",height="+h+
	  ",top=" + ((screen.height-h)/2) + ",left=" + ((screen.width - (w + 12))/2));
  if (signinPopupWin != null)
    signinPopupWin.focus();
}