function showDescription(name, Desc)
{
    var oWindow = null;     	
	oWindow = window.open("","Descwindow","width=400,height=200,top=300,right=20,location=0,toolbar=0,status=0,menubar=0,resizable=0,copyhistory=0,scrollbars=1");
	oWindow.document.write('<html><head><title>Project Portfolio Description</title></head><body><form id="frmView" name="frmView" method="post" ><div> <strong>Name : ' + name + '</strong><br />' + Desc +  '</div></form></body></html>');
    oWindow.focus(); 
}
