function windowopen(URL,width,height) {
newWindow = window.open(URL,'newwindow','toolbar=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,location=no,width='+width+',height='+height);
newWindow.moveTo(30,30);
newWindow.focus();
}

