// popup Window with HTML contents
function openWin(ht) {
myWindow = window.open('', '', 'width=200,height=100,scrollbars=yes,resizable=yes');
myWindow.document.write(ht);
myWindow.focus();
}
Post a Comment
No comments:
Post a Comment