<!--
var winMy=null;

function Desc(FileDesc){
if (winMy==null || winMy.closed)
{
myHeight=Math.round(((screen.availHeight*70)/100));
myWidth=Math.round(((screen.availWidth*70)/100));
//alert(myWidth+"x"+myHeight);

winMy = window.open("","ComponetLibraryChildWindow","width=100,height=100,resizable=yes,scrollbars=yes");
winMy.resizeTo(myWidth, myHeight);
winMy.resizeBy(10, 29);
winMy.resizable = true;
winMy.scrollbars = true;

}
winMy.document.location=FileDesc;
winMy.focus();
}
//-->