// For More than one divs

// On Link Over
function progTipShow(str,pos){
	
	// Check For Empty Caption
	if(str!="<h1></h1>"){
		document.getElementById('progTip').innerHTML=str;
		document.getElementById('progTip').style.marginTop= (pos * 15) + "px";
		
		//alert(document.getElementById('progTip').style.top);
		document.getElementById('progTip').style.visibility="visible";
	}
}

// On Tip Over
function progTipStay(){
	
	document.getElementById('progTip').style.visibility="visible";
	
}

// Hide Tip
function progTipHide(){
	
	document.getElementById('progTip').style.visibility="hidden";
	
}