function popwin( url, w, h ) {
	if( !w ) w = 650;
	if( !h ) h = 354;
	var t = Math.floor((screen.height-h)/2);
	var l = Math.floor((screen.width-w)/2);
	window.open(url,'popwin','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width='+w+', height='+h+', left='+l+', top='+t);
}