function openwindow(theURL,winName,width,height,features) {
	var d_top = (window.screen.height-height*1.3)/2
	var d_left = (window.screen.width-width)/2
	window.open(theURL,winName,'left=' + d_left + ',top=' + d_top + ',' + features);
}

