function showToolTip(toShowToolTip)
{
	if (document.getElementById(toShowToolTip).style.display == "none" || document.getElementById(toShowToolTip).style.display == "") 
	{
		document.getElementById(toShowToolTip).style.display="inline";		
	}
	else
	{
		document.getElementById(toShowToolTip).style.display="none";		
	}
}

function opWinIm(url,w,h)
{
	var msg;	
	msg = window.open(url,"popupwindow","toolbar=no,resizable=yes,height="+h+",width="+w+",left="+((screen.availwidth/2)-(w/2))+",top="+((screen.availheight/2)-(h/2)));		
	msg.moveTo(((screen.availWidth/2)-(w/2)),((screen.availHeight/2)-(h/2)));
	msg.focus();
	return false;
}

