
function dispayTitle(contentType){

	displayTitleObj = document.getElementById("displayTitle");
	
	
	if(displayTitleObj != "undefined"){
		if(contentType=='milestone'){
			displayTitleObj.innerHTML="<b>Milestones</b> : <br><br> Our key departmental and IG events from the last quarter!";
		}
		else if(contentType=='achieve'){
			displayTitleObj.innerHTML="<b>aChIEve</b> : <br><br> Here are some CIE staff and Youth Aspirers who have worked hard to do RP proud!";		
		}
		else if(contentType=='rnd'){
			displayTitleObj.innerHTML="<b>Up and Coming</b> : <br><br> We give you a preview of the upcoming CIE projects and initiatives. Watch for it!";		
		}
		else if(contentType=='ine'){
			displayTitleObj.innerHTML="<b>I&E Extras</b> : <br> What are experts' take on innovation and enterprise? Here are some interesting reads!";			
		}		
	}
}

function clearTitle(){
	displayTitleObj = document.getElementById("displayTitle");
	
	if(displayTitleObj != "undefined"){
		displayTitleObj.innerHTML="<b>CIE Vision</b> :<br> To be the Centre of Excellence for Business & Entrepreneurship.";
	}

}

function open_window(url){
	var param = "height=800,width=800,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbar=yes";
	window.open(url, "rnd_popup1");
}


