// JavaScript Document
function popup(index,index1)
{
winWidth = 380;
winHeight = 300;
winLef = Math.floor((Math.abs(screen.availWidth-winWidth))/2);
winTop = Math.floor((Math.abs(screen.availHeight-winHeight))/2);
window.open(index,index1,"width=350,height=200,scrollbars=yes,resizable=no,menubar=no,toolbar=no,left="+winLef+",top="+winTop) 
}

