
function ResumeOutPut(){

	var strResume,i
	var intMax
	/*var wWidth = 750; wHeight=500;
	var wLeft = (screen.width - wWidth ) / 2
	var wTop = (screen.height - wHeight ) / 2
	var wSetting = 'top=' + wTop + ',left=' + wLeft + ',width=' + wWidth + ',height=' + wHeight*/
	
	strResume='';
	
	strResume = "<table align='center' cellpadding='7' cellspacing='0' border='0' width='96%'>";
	strResume += "<tr><td colspan='4' height='5'></td></tr>";
	strResume += "<tr>";
	
	for	(i=0;i<Resume.length;i++){
	
		strResume += "<td align='center'>"
		strResume += "<img onmouseover=this.style.cursor='hand' onclick=ResumeDetail("+Resume[i][0]+")"+
		" class='photo' width='115' height='135' src='../images/Resume/" + Resume[i][1] +"'>";
		strResume += "</td>";
	
	}
	
	strResume += "</tr></table>";
	
	 document.write(strResume)

}

function ResumeDetail(intRID){
	
	var wWidth = 750; wHeight=600;
	var wLeft = (screen.width - wWidth ) / 2
	var wTop = (screen.height - wHeight ) / 2
	var wSetting = 'top=' + wTop + ',left=' + wLeft + ',width=' + wWidth + ',height=' + wHeight
//	alert(intRID)
//window.focus()
	//window.open('ResumeDetail.aspx?RID=' +intRID,'Resume','scrollbars=1,resizable=1,dependent=1,' + wSetting);
	window.showModalDialog('ResumeDetail.aspx?RID=' +intRID,'Resume','dialogHeight:' + wHeight + 'px; dialogWidth: ' + wWidth + 'px; scroll: Yes; dialogTop:' + wTop + ' ; dialogLeft:' + wLeft + ' ; edge: Raised; center: Yes; help: No; resizable: No; status: No;location: No;titlebar: No');

	
	}