// JavaScript Document

function openWindow (url, width, height, scrollbars){
		window.open(url, "_blank", "toolbar=no,menubar=no,directories=no,status=no,resizable=no,location=no,scrollbars=" + scrollbars + ",height=" + height + ",width=" + width + ",left=20,top=20")
		} 