window.open("URL" , "Target", "Option");
URL : url you want to link to
Target : _blank , _self
Option : you can customize display option eg. display toolbar ? , scrollbars ? . you can config display position and pop up size.
for example in below
Example for open url popup windows with java script
<script>
// Create array of String
arrayObj=["CAT","DOG","MAN","CAR"];
for (var i=0;i<arrayObj.length;i++)
document.write(arrayObj[i] + "<br>");
}
</script>