var messages = new Array();

messages[0] = 	[	
					"",1,1, 
					"<div style='text-align:left;font-size:10px;font-weight:normal;font-face:arial'><font size='2'>You may post your views on the colloquium topic in the latest issue of <i>Vikalpa</i> or create a new topic for discussion.</font></div>", 
					300
				];
messages[1] = 	[	
					"",1,1, 
					"<div style='text-align:left;font-size:10px;font-weight:normal;font-face:arial'><font size='2'>You may share and discuss your research ideas, problems, methodologies, and related issues or seek suggestions from others.</div>", 
					300
				];			
messages[2] = 	[	
					"",1,1, 
					"<div style='text-align:left;font-size:10px;font-weight:normal;font-face:arial'><font size='2'>You may share your rich experiences of management teaching and research and your reflections on the application of management theories and organization issues. You may also share the innovative methods of teaching which you may be using.</div>", 
					300
				];			
messages[3] = 	[	
					"",1,1, 
					"<div style='text-align:left;font-size:10px;font-weight:normal;font-face:arial'><font size='2'>You may share and discuss your managerial problems, experiences, innovations, etc. with fellow executives and academicians.</div>", 
					300
				];			
messages[4] = 	[	
					"",1,1, 
					"<div style='text-align:left;font-size:10px;font-weight:normal;font-face:arial'><font size='2'>By signing up, you can download Vikalpa articles and cases except for the recent two years and  participate in the discussion forum.</div>", 
					300
				];			


function doTooltip(e, num) {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  
  var cntnt = wrapTipContent(num);
  var tip = document.getElementById( Tooltip.tipID );
  
  if ( messages[num][4] ) tip.style.width = messages[num][4] + "px";
  Tooltip.show(e, cntnt);

}

function hideTip() {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.hide();
}

function wrapTipContent(num) {
  var cntnt = '<div class="img"><img src="' + messages[num][0] + '" width="' + 
    messages[num][1] + '" height="' + messages[num][2] + '" border="0"></div>';
  if ( messages[num][3] ) cntnt += '<div class="msg">' + messages[num][3] + '</div>';
	return cntnt;
}	
