// JavaScript Document
	function OpenMyPopUp(eventname){
	var windowFeatures = 'width=583,height=356,toolbar=0,location=0,status=0,menuBar=0,scrollBars=0,resizable=0';
	var myWindowName = 'popupWindowName';
	window.open( eventname, myWindowName, windowFeatures ); 
	}
	function OpenMyPopUpCollage(eventname){
	var windowFeatures = 'width=780,height=530,toolbar=0,location=0,status=0,menuBar=0,scrollBars=0,resizable=0';
	//var myWindowName = 'popupWindowName';
	var w=window.open( eventname, 'myWindowName', windowFeatures ); 
	w.focus();
	}
	function OpenBio(member){
	var windowFeatures1 = 'width=583,height=356,toolbar=0,location=0,status=0,menuBar=0,scrollBars=0,resizable=0';
	var myWindowName1 = 'popupWindowName';
	window.open( member, myWindowName1, windowFeatures1 ); 
	}
	
