// JavaScript Document

function OpenWindow(page,windowh,windoww,scroll) {
	windowstyle = "height=" + windowh + ",width=" + windoww + ",toolbar=no,menubar=no,scrollbars=" + scroll + ",resizable=no,location=no,directories=no,status=no";
	thewindow = window.open(page, '_blank', config=windowstyle);
}