function openwindow(windowurl, ww, wh, wn, scroll) {
	Window = window.open('',wn,'resizable=yes,scrollbars=' + scroll + ',status=no,width=' + ww + ',height=' + wh);
	Window.location.href = windowurl;
}
