// JavaScript Document
function openWindow(winURL)
{
url = window.open(winURL, 'mywindow','status=1,toolbar=1, scrollbars=yes, left=100, top=200,resizable=yes');
url.focus()
}