/** Function to open the download document in a new window- 
 ** Path is the path of the download document
 **/
function DownloadDetails(path)
{
	var go = path;
 	var leftPos = (window.screen.width/2)-400;
   	var topPos = (window.screen.height/2)-300;
   	window.open(go , "Download" ,"left=" + leftPos + ",top=" + topPos + ",width=800,height=600,scrollbars=yes");
}