open a new windaow in javascript code example
Example 1: javascript open url
window.location.href = "http://example.com/";
Example 2: javascript open new window with html content
var newWin = open('url','windowName','height=300,width=300');
newWin.document.write('html to write...');