function openWindow(path,title,width,height,scrollbars) {
	newWindow = window.open(""+path,""+title,"toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars="+scrollbars+", resizable=no, copyhistory=no, width="+width+", height="+height+"") ;
	newWindow.focus() ;
	return false;
}
