function ddown(ly)
	{ 
 	i=1;
    	while (document.getElementById("ly"+i))
 	{
	document.getElementById("ly"+i).style.display='none';
	i++;
	}
 	document.getElementById(ly).style.display='block'; 
	}
function dhide(ly)
	{ 
 	
 	document.getElementById(ly).style.display='none'; 
	}
	
function openwindow(){
	var w= 700;
var baseText = null; 
//var popUp = document.getElementById("mohit");
var popUpArtical= document.getElementById("printArtical");
  w=open('','windowname','scrollbars,resizable,toolbar,status,width='+w+'');
  with(w){
    document.write('<body>');
	document.write('<link href="includes/popup.css" rel="stylesheet" type="text/css" />')
    //document.write(popUp.innerHTML);
	document.write('<div>');
	document.write("<img src='images/logo.gif'>");
	document.write('</div>');
	document.write('<div style="height:10px"></div> ');
	document.write('<hr>');
	document.write('<div style="height:10px"></div> ');
	document.write(popUpArtical.innerHTML);
    document.write("</body>");
  }
  return false;
}