// to download file
function startDownload(fileSrc)  
{  
	window.open(fileSrc,'Download');  
}  


function openDialog(fileSrc){


document.execCommand("SaveAs",'1',fileSrc);

}



function change_background(id){
		
      document.getElementById(divId).style.backgroundImage ='url(images/menu_hover_bg.jpg)'; 
}


function change_page_title(new_title){
	document.title = new_title;
}
