I need to open a popup, after checking a condition in javascript. I was trying to customize the popup window.
I used
function fun()
{
if() {
window.open('name.jsp','Popup','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=420,height=400,left=430,top=23');
}
else {
}
}
But I needed a pop like what I have given below. Is it possible in javascript. image 1: what I am getting image 2: what is needed.

