weird, this was working last night but now its not
Code:
<HTML>
<head>
<script>
var objTimer1, newOpenWindow1;
var features = 'width=400,height=250,toolbar=0,location=0,status=1,menuBar=0,scrollBars=0,resizable=0';
function PopUp_1(){
var myWindowName = 'name - 1';
var whichPage = 'someContent.html';
newOpenWindow1 = window.open(whichPage,myWindowName,features);
objTimer1 = window.setInterval("docFunc1('name - 1')", 10);
}
function docFunc1(newTitle1){
if (newOpenWindow1.document.readyState == 'complete'){
newOpenWindow1.document.title=newTitle1;
window.clearInterval(objTimer1);
}
}
</script>
</head>
<body>
<input type=button value="open window" onclick="PopUp_1()"></input>
</body>
</HTML>
Bookmarks