function popUp(popPath,popWidth,popHeight)
{
popWidth = ',width=' + popWidth;
// alert(popWidth);
popHeight = ',height=' + popHeight;
// alert(popHeight);
window.open(popPath,"_blank","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes"+popWidth+popHeight);
}