	function wishDetail( wtype, wcontent, wname, wsex, wemail ) {
  			
  			var sex = "男";
  			if( wsex == 1 || wsex == "1" ) {
  				sex="女";
  			}else {
  				sex="男";
  			}
  			
  		//	alert(wcontent+sex+wtype+wname+wemail);
  			
  			var html = 	"<table width='310' border='0' cellpadding='0' cellspacing='0' >" +
						"<tr><td width='310' height='80' valign='top' class='or_wish_content'>" +
						"<span style='float:left;padding-right:5px;'>" +
						"<img src='web/images/original/wish/ti_" + wtype + 
						".jpg' width='74' height='48' /></span>" + 
						wcontent +
						"</td></tr><tr><td width='310' valign='middle'>" +
						"<table width='310' class='or_wish_content' border='0' cellpadding='0' cellspacing='0'><tr><td width='260' align='right'>" + wname + "</td>" +
						"<td width='20' align='center'>" + sex + "</td><td width='20' align='center'>" +
						"<a href='mailto:" + wemail + "'><img src='web/images/original/or_wish_mail.jpg' width='14' height='9' border='0' />" +
						"</a></td></tr></table></td></tr></table>";
					
  			document.getElementById('wishDetailDiv').innerHTML=html;
  			
  		}
